DynamicValue Implicit Conversion (DynamicValue to String)

Converts a dynamic value to a String value.

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

Syntax

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

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

Parameters

Return Value

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

See Also

Reference

DynamicValue Class

Implicit Overload

Microsoft.Activities Namespace