DynamicValue Implicit Conversion (DynamicValue to Int32)

Converts a dynamic value to an Int32 value.

Namespace:  Microsoft.Activities
Assembly:  Microsoft.Activities (in Microsoft.Activities.dll)

Syntax

'Declaration
Public Shared Widening Operator CType ( _
    dynamicValue As DynamicValue _
) As Integer
'Usage
Dim input As DynamicValue 
Dim output As Integer 

output = CType(input, Integer)
public static implicit operator int (
    DynamicValue dynamicValue
)
static implicit operator int (
    DynamicValue^ dynamicValue
)
JScript supports the use of custom casts, but not the declaration of new ones.

Parameters

Return Value

Type: System.Int32
The converted Int32 value from a dynamic value.

See Also

Reference

DynamicValue Class

Implicit Overload

Microsoft.Activities Namespace