Copies the contents of the List to the specified array, starting at the specified index value.

Namespace:  C1.C1Schedule
Assembly:  C1.Web.UI.Controls.2 (in C1.Web.UI.Controls.2.dll)

Syntax

C#
public virtual void CopyTo(
	Array array,
	int index
)
Visual Basic
Public Overridable 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 ICollection. The Array must have zero-based indexing.
index
Type: System..::..Int32
The zero-based index in the array at which the copying begins.

Implements

ICollection..::..CopyTo(Array, Int32)

See Also