RhinoCommon API
RhinoListTCopyTo Method (Int32, T, Int32, Int32) |
Copies a range of elements from the List to a compatible one-dimensional array,
starting at the specified index of the target array.
Namespace: Rhino.Collections
Assembly: RhinoCommon (in RhinoCommon.dll)

public void CopyTo( int index, T[] array, int arrayIndex, int count )
Public Sub CopyTo ( index As Integer, array As T(), arrayIndex As Integer, count As Integer )
Parameters
- index
- Type: SystemInt32
The zero-based index in the source List at which copying begins. - array
- Type: T
The one-dimensional Array that is the destination of the elements copied from List. The Array must have zero-based indexing. - arrayIndex
- Type: SystemInt32
The zero-based index in array at which copying begins. - count
- Type: SystemInt32
The number of elements to copy.
