프로퍼티 | 타입 | 설명 | |
---|---|---|---|
BitCount | int | ||
Bits | uint | ||
Stream | Stream |
메소드 | 설명 | |
---|---|---|
BitStream ( Stream stream ) : System |
Initialise the bitstream with the given stream.
|
|
BooleanLSB ( ) : bool |
Read a bit in LSB order and return whether it's non-zero.
|
|
BooleanMSB ( ) : bool |
Read a bit in MSB order and return whether it's non-zero.
|
|
FetchLSB ( ) : void |
Fill the bit buffer in LSB order.
|
|
FetchMSB ( ) : void |
Fill the bit buffer in MSB order.
|
|
PeekLSB ( int count ) : int |
Peek at the next number of bits in LSB order.
|
|
PeekMSB ( int count ) : int |
Peek at the next number of bits in MSB order.
|
|
ReadLSB ( int count ) : int |
Read some bits in LSB order.
|
|
ReadMSB ( int count ) : int |
Read some bits in MSB order.
|
|
ToString ( ) : string |
Convert to a string representation of the bit stream.
|
public BitStream ( Stream stream ) : System | ||
stream | Stream | The |
리턴 | System |