Skip to content
This repository has been archived by the owner on Oct 11, 2023. It is now read-only.

fa5e2aeb cbc5 24b6 2520 62feecb1c670

haplokuon edited this page May 6, 2023 · 1 revision

CopyTo Method

netDxf 3.0.0 Library

Copies the entire list to a compatible one-dimensional array, starting at the specified index of the target array.

Definition

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 

Parameters

  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.

Implements

ICollection(T).CopyTo(T[], Int32)

See Also

Reference

SupportFolders Class
netDxf.Collections Namespace

Clone this wiki locally