ISequence T  CopyTo Method ( T )A Sandcastle Documented Class Library
Copies the entire sequence to an array, starting at the beginning of the target array. Copying will stop once either the end of this sequence is reached, or the end of the array is reached.

Namespace: Sequences
Assembly: Sequences (in Sequences.dll) Version: 1.0.1.0 (1.0.1)
Syntax
int CopyTo(
	T[] destination
)

Parameters

destination
Type:  T 
The one-dimensional array that is the destination of the elements copied from this sequence.

Return Value

Type: Int32
The number of elements copied.
See Also