ObservableCollectionTCopyTo Method
|
Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array.
Namespace:
DXFReaderNET.Collections
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public void CopyTo(
T[] array,
int arrayIndex
)
Public Sub CopyTo (
array As T(),
arrayIndex As Integer
)
public:
virtual void CopyTo(
array<T>^ array,
int arrayIndex
) sealed
abstract CopyTo :
array : 'T[] *
arrayIndex : int -> unit
override CopyTo :
array : 'T[] *
arrayIndex : int -> unit
METHOD CopyTo(
array AS T[],
arrayIndex AS LONG
) AS VOID
Parameters
- array
- Type: T
The one-dimensional System.Array that is the destination of the elements copied from the collection. The System.Array must have zero-based indexing. - arrayIndex
- Type: SystemInt32
The zero-based index in array at which copying begins.
Implements
ICollectionTCopyTo(T, Int32)See Also