| LittleEndianBitConverterToUInt64 Method |
Reads a 64-bit unsigned integer from the specified position in a byte array.
Namespace:
Ookii.Jumbo
Assembly:
Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 2.0.0
Syntax public static ulong ToUInt64(
byte[] buffer,
int offset
)
Public Shared Function ToUInt64 (
buffer As Byte(),
offset As Integer
) As ULong
public:
static unsigned long long ToUInt64(
array<unsigned char>^ buffer,
int offset
)
static member ToUInt64 :
buffer : byte[] *
offset : int -> uint64
Parameters
- buffer
- Type: SystemByte
An array of bytes. - offset
- Type: SystemInt32
The starting position within buffer.
Return Value
Type:
UInt64A 64-bit unsigned integer formed by eight bytes beginning at
offset.
See Also