EntityCollectionCopyTo 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(
EntityObject[] array,
int arrayIndex
)
Public Sub CopyTo (
array As EntityObject(),
arrayIndex As Integer
)
public:
virtual void CopyTo(
array<EntityObject^>^ array,
int arrayIndex
) sealed
abstract CopyTo :
array : EntityObject[] *
arrayIndex : int -> unit
override CopyTo :
array : EntityObject[] *
arrayIndex : int -> unit
METHOD CopyTo(
array AS EntityObject[],
arrayIndex AS LONG
) AS VOID
Parameters
- array
- Type: DXFReaderNET.EntitiesEntityObject
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