|
LittleEndianCopyBytes(UInt64, Byte, Int32) Method
|
Copies the specified 64-bit unsigned integer value as an array of 8 bytes in the target endian-order to the destination array.
Namespace: GSFAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.253-beta+ffb7163c9e3b771705bc5b9aa3f09870f2cb9e2c
Syntaxpublic static int CopyBytes(
ulong value,
byte[] destinationArray,
int destinationIndex
)
Public Shared Function CopyBytes (
value As ULong,
destinationArray As Byte(),
destinationIndex As Integer
) As Integer
static member CopyBytes :
value : uint64 *
destinationArray : byte[] *
destinationIndex : int -> int
GSF.LittleEndian.CopyBytes = function(value, destinationArray, destinationIndex);
View SourceParameters
- value UInt64
- The number to convert and copy.
- destinationArray Byte
- The destination buffer.
- destinationIndex Int32
- The byte offset into destinationArray.
Return Value
Int32Length of bytes copied into array based on size of
value.
See Also