IBitStreamReadUInt64 Method |
Returns up to the next 64 bits from the stream in big-endian order.
Namespace: VirtualRadar.InterfaceAssembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax ulong ReadUInt64(
int countBits
)
Function ReadUInt64 (
countBits As Integer
) As ULong
unsigned long long ReadUInt64(
int countBits
)
abstract ReadUInt64 :
countBits : int -> uint64
Parameters
- countBits
- Type: SystemInt32
Cannot be less than 1 or greater than 64.
Return Value
Type:
UInt64Remarks
The bits are right-shifted so that the LSB read is the LSB of the return value. For example, if three bits from the stream '101' are read then the resulting
quad-word will be '00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000101'.
The effect of calling this method before Initialise(Byte) is undefined.
See Also