List<T>::CopyTo Method

 

Copies the List<T> or a portion of it to an array.

Namespace:   System.Collections.Generic
Assembly:  mscorlib (in mscorlib.dll)

NameDescription
System_CAPS_pubmethodCopyTo(array<T>^)

Copies the entire List<T> to a compatible one-dimensional array, starting at the beginning of the target array.

System_CAPS_pubmethodCopyTo(array<T>^, Int32)

Copies the entire List<T> to a compatible one-dimensional array, starting at the specified index of the target array.

System_CAPS_pubmethodCopyTo(Int32, array<T>^, Int32, Int32)

Copies a range of elements from the List<T> to a compatible one-dimensional array, starting at the specified index of the target array.

Return to top
Show: