Copies the Elements into an array.

 

   

Syntax
 

[C#]
virtual void CopyTo(T[] array, int index)

[Visual Basic]
Overridable Function CopyTo(array() As T, index As int) As void

 

   

Params
 
Name Description
array The array that is the destination for the elements.
index The zero-based index at which copying begins.

 

   

Notes
 

Copies the Elements into an array.

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

 

   

Example
 
None.