Overload List
Name | Description | |
---|---|---|
CopyTo( T ) |
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.
| |
CopyTo( T , Int32) |
Copies the entire sequence to an array, starting at the position destinationIndex of the target array.
Copying will stop once either the end of this sequence is reached, or the end of the array is reached.
| |
CopyTo(Int32, T , Int32, Int32) |
Copies a given number of elements from this sequence to an array, starting at the position index of this sequence
and at the position destinationIndex of the target array.
Copying will stop once either the end of this sequence is reached, or the end of the array is reached, or count elements have been copied.
|
See Also