BigArrayTCopyTo Method (Int64, T, Int32, Int64) |
Copies a range of elements from the BigArray to a compatible one-dimensional array,
starting at the specified index of the destination array.
Namespace: BioAssembly: 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
)
Public Sub CopyTo (
index As Long,
destinationArray As T(),
destinationIndex As Integer,
count As Long
)
public:
void CopyTo(
long long index,
array<T>^ destinationArray,
int destinationIndex,
long long count
)
member CopyTo :
index : int64 *
destinationArray : 'T[] *
destinationIndex : int *
count : int64 -> unit
Parameters
- index
- Type: SystemInt64
The zero-based index in the source BigArray at
which copying begins. - destinationArray
- Type: T
The one-dimensional array that is the destination of the elements
copied from BigArray. - destinationIndex
- Type: SystemInt32
The zero-based index in destinationArray at which copying begins. - count
- Type: SystemInt64
The number of elements to copy.
See Also