Method ReadBits
ReadBits(out ulong, uint)
Read a certain amount of bits from the stream.
Declaration
public void ReadBits(out ulong value, uint bitCount)
Parameters
Type | Name | Description |
---|---|---|
ulong | value | Value to store bits into. |
uint | bitCount | Amount of bits to read |
ReadBits(out byte, uint)
Read bits from stream.
Declaration
public void ReadBits(out byte value, uint bitCount)
Parameters
Type | Name | Description |
---|---|---|
byte | value | Value to store bits into. |
uint | bitCount | Amount of bits to read. |