Copies the elements of the collection to an Array, starting at a particular Array index

Namespace:  JHSoftware.SimpleDNSPlus
Assembly:  SDNSAPI (in SDNSAPI)
Version: 1.1.0.0 (1.1.0.0)

Syntax

C#
public void CopyTo(
	string[] array,
	int arrayIndex
)
Visual Basic (Declaration)
Public Sub CopyTo ( _
	array As String(), _
	arrayIndex As Integer _
)

Parameters

array
Type: array<System..::.String>[]()[]
The one-dimensional Array that is the destination of the elements copied from the collection. The Array must have zero-based indexing
arrayIndex
Type: System..::.Int32
The zero-based index in array at which copying begins

Implements

ICollection<(Of <(T>)>)..::.CopyTo(array<T>[]()[], Int32)

See Also