C# Class BitStream.BitIO.BitReader

Datei anzeigen Open project: durow/TestArea Class Usage Examples

Public Properties

Property Type Description
BinString StringBuilder

Public Methods

Method Description
BitReader ( byte data ) : System
ByteToBinString ( byte b ) : char[]
ReadBinString ( int bitLength ) : string
ReadBinString ( int offset, int bitLength ) : string
ReadBool ( ) : bool
ReadBool ( int offset ) : bool
ReadByte ( ) : byte
ReadByte ( int offset ) : byte
ReadInt ( int bitLength ) : int
ReadInt ( int offset, int bitLength ) : int
ReadInt16 ( int bitLength ) : Int16
ReadInt16 ( int offset, int bitLength ) : Int16

Method Details

BitReader() public method

public BitReader ( byte data ) : System
data byte
return System

ByteToBinString() public static method

public static ByteToBinString ( byte b ) : char[]
b byte
return char[]

ReadBinString() public method

public ReadBinString ( int bitLength ) : string
bitLength int
return string

ReadBinString() public method

public ReadBinString ( int offset, int bitLength ) : string
offset int
bitLength int
return string

ReadBool() public method

public ReadBool ( ) : bool
return bool

ReadBool() public method

public ReadBool ( int offset ) : bool
offset int
return bool

ReadByte() public method

public ReadByte ( ) : byte
return byte

ReadByte() public method

public ReadByte ( int offset ) : byte
offset int
return byte

ReadInt() public method

public ReadInt ( int bitLength ) : int
bitLength int
return int

ReadInt() public method

public ReadInt ( int offset, int bitLength ) : int
offset int
bitLength int
return int

ReadInt16() public method

public ReadInt16 ( int bitLength ) : Int16
bitLength int
return System.Int16

ReadInt16() public method

public ReadInt16 ( int offset, int bitLength ) : Int16
offset int
bitLength int
return System.Int16

Property Details

BinString public_oe property

public StringBuilder BinString
return StringBuilder