This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 411
fa5e2aeb cbc5 24b6 2520 62feecb1c670
haplokuon edited this page May 6, 2023
·
1 revision
netDxf 3.0.0 Library
Copies the entire list 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(
string[] array,
int arrayIndex
)
VB
Public Sub CopyTo (
array As String(),
arrayIndex As Integer
)
C++
public:
virtual void CopyTo(
array<String^>^ array,
int arrayIndex
) sealed
F#
abstract CopyTo :
array : string[] *
arrayIndex : int -> unit
override CopyTo :
array : string[] *
arrayIndex : int -> unit
- String[]
- The one-dimensional array that is the destination of the elements copied from list. The array must have zero-based indexing.
- Int32
- The zero-based index in the array at which copying begins.
ICollection(T).CopyTo(T[], Int32)