Search
ReadOnlyCollection(T).CopyTo Method
See Also
 





Copies a range of elements from this collection to a compatible one-dimensional System.Array, starting at the specified index of the target array.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public void CopyTo (
    Array array,
    int index
)

Visual Basic  Copy Code

Public Sub CopyTo( _
    array As Array, _
    index As Integer _
)

 Parameters

array

The one-dimensional Array that is the destination of the elements copied from the current collection.

index

A 32-bit integer that represents the index in array at which copying begins.

 See Also