Click or drag to resize
BigListTCopyTo Method (Int64, T, Int32, Int64)
Copies a range of elements from the BigList to a compatible one-dimensional array, starting at the specified index of the destination array.

Namespace: Bio
Assembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax
public void CopyTo(
	long index,
	T[] destinationArray,
	int destinationIndex,
	long count
)

Parameters

index
Type: SystemInt64
The zero-based index in the source BigList at which copying begins.
destinationArray
Type: T
The one-dimensional array that is the destination of the elements copied from BigList.
destinationIndex
Type: SystemInt32
The zero-based index in destinationArray at which copying begins.
count
Type: SystemInt64
The number of elements to copy.
See Also