Copies the elements of the ItemCollection to an array, starting at a particular array index.

Namespace:  DlhSoft.Windows.Controls.Primitives
Assembly:  DlhSoft.Data.Controls (in DlhSoft.Data.Controls.dll)

Syntax

C#
public void CopyTo(
	Array array,
	int index
)
Visual Basic (Declaration)
Public Sub CopyTo ( _
	array As Array, _
	index As Integer _
)

Parameters

array
Type: System..::.Array
The one-dimensional array that is the destination of the elements copied from ItemCollection. The array must have zero-based indexing.
index
Type: System..::.Int32
The zero-based index in array at which copying begins.

See Also