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

Namespace:  C1.C1Report
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
public void CopyTo(
	Group[] array,
	int index
)
Visual Basic
Public Sub CopyTo ( _
	array As Group(), _
	index As Integer _
)

Parameters

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

See Also