Метод | Описание | |
---|---|---|
BitStream ( ) : System |
|
|
BitStream ( Stream input ) : System |
|
|
CountMaximumBits ( ) : int |
|
|
CountNeededBits ( int source ) : int |
Signed integer Bit counting
|
|
CountNeededBits ( ulong source ) : int |
|
|
CountNeededBitsFB ( double source ) : int |
|
|
FBtoInt32 ( double source ) : |
|
|
GetBits ( |
|
|
GetBitsFB ( |
|
|
GetBitsSigned ( |
|
|
Reset ( ) : void |
|
|
WriteBits ( int numberOfBits, int data ) : void |
/
|
|
WriteBits ( int numberOfBits, ulong data ) : void |
Fails for the following szenario : bits.WriteBits( 3 , 1 ), RGB.Write() RGB is #ff bits would look like following : 00000000 11111111 11111111 11111111
|
|
WriteBitsFB ( int numberOfBits, double value ) : void |
|
|
WriteFlush ( ) : void |
|
public BitStream ( Stream input ) : System | ||
input | Stream | |
Результат | System |
public CountNeededBits ( int source ) : int | ||
source | int | A signed int |
Результат | int |
public CountNeededBits ( ulong source ) : int | ||
source | ulong | |
Результат | int |
public CountNeededBitsFB ( double source ) : int | ||
source | double | |
Результат | int |
public FBtoInt32 ( double source ) : |
||
source | double | |
Результат |
public GetBits ( |
||
numerOfBits | ||
Результат |
public GetBitsFB ( |
||
numberOfBits | ||
result | double | |
Результат | void |
public GetBitsSigned ( |
||
numberOfBits | ||
Результат |
public WriteBits ( int numberOfBits, int data ) : void | ||
numberOfBits | int | |
data | int | |
Результат | void |
public WriteBits ( int numberOfBits, ulong data ) : void | ||
numberOfBits | int | |
data | ulong | |
Результат | void |
public WriteBitsFB ( int numberOfBits, double value ) : void | ||
numberOfBits | int | |
value | double | |
Результат | void |