DynamicValue.CopyTo Method

 

Copies the DynamicValue contents.

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

Overload List

Name Description
System_CAPS_pubmethod CopyTo(DynamicValue[], Int32)

Copies the DynamicValue into an array.

System_CAPS_pubmethod CopyTo(KeyValuePair<String, DynamicValue>[], Int32)

Copies the DynamicValue into an array.

See Also

DynamicValue Class
Microsoft.Activities Namespace

Return to top

DynamicValue.CopyTo Method (DynamicValue[], Int32)

Copies the DynamicValue into an array.

Syntax

public void CopyTo(
    DynamicValue[] array,
    int arrayIndex
)
public:
virtual void CopyTo(
    array<DynamicValue^>^ array,
    int arrayIndex
) sealed
abstract CopyTo : 
        array:DynamicValue[] *
        arrayIndex:int -> unit
override CopyTo : 
        array:DynamicValue[] *
        arrayIndex:int -> unit
Public Sub CopyTo (
    array As DynamicValue(),
    arrayIndex As Integer
)

Parameters

  • arrayIndex
    Type: System.Int32

    The index of the array at which copying starts.

Implements

ICollection<T>.CopyTo(T[], Int32)

Return to top

DynamicValue.CopyTo Method (KeyValuePair<String, DynamicValue>[], Int32)

Copies the DynamicValue into an array.

Syntax

public void CopyTo(
    KeyValuePair<string, DynamicValue>[] array,
    int arrayIndex
)
public:
virtual void CopyTo(
    array<KeyValuePair<String^, DynamicValue^>>^ array,
    int arrayIndex
) sealed
abstract CopyTo : 
        array:KeyValuePair<string, DynamicValue>[] *
        arrayIndex:int -> unit
override CopyTo : 
        array:KeyValuePair<string, DynamicValue>[] *
        arrayIndex:int -> unit
Public Sub CopyTo (
    array As KeyValuePair(Of String, DynamicValue)(),
    arrayIndex As Integer
)

Parameters

  • arrayIndex
    Type: System.Int32

    The index of the array at which copying starts.

Implements

ICollection<T>.CopyTo(T[], Int32)

Return to top