This repository was archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 438
97a616ba de94 aaea eb07 4be49e22712d
haplokuon edited this page May 6, 2023
·
1 revision
netDxf 3.0.0 Library
Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array.
Namespace: netDxf.Collections
Assembly: netDxf (in netDxf.dll) Version: 3.0.0
C#
public void CopyTo(
T[] array,
int arrayIndex
)VB
Public Sub CopyTo (
array As T(),
arrayIndex As Integer
)C++
public:
virtual void CopyTo(
array<T>^ array,
int arrayIndex
) sealedF#
abstract CopyTo :
array : 'T[] *
arrayIndex : int -> unit
override CopyTo :
array : 'T[] *
arrayIndex : int -> unit - 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.
- Int32
- The zero-based index in array at which copying begins.
ICollection(T).CopyTo(T[], Int32)