SparseSequenceCopyTo Method |
Copies all items from the sequence to a pre allocated array.
Namespace: BioAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public void CopyTo(
byte[] byteArray,
long start,
long count
)
Public Sub CopyTo (
byteArray As Byte(),
start As Long,
count As Long
)
public:
void CopyTo(
array<unsigned char>^ byteArray,
long long start,
long long count
)
member CopyTo :
byteArray : byte[] *
start : int64 *
count : int64 -> unit
Parameters
- byteArray
- Type: SystemByte
Array to fill the items to. - start
- Type: SystemInt64
Index at which the filling starts. - count
- Type: SystemInt64
Total numbers of elements to be copied.
See Also