C# Class Gammtek.Conduit.IO.BitBinaryReader

BinaryReader that supports reading and writing individual bits from the stream.
Inheritance: System.IO.BinaryReader
Datei anzeigen Open project: ME3Explorer/ME3Explorer

Public Methods

Method Description
BitBinaryReader ( BitStream input ) : System.IO

Initializes a new instance of the BitBinaryReader class.

BitBinaryReader ( BitStream input, Encoding encoding ) : System.IO

Initializes a new instance of the BitBinaryReader class.

BitBinaryReader ( Stream input ) : System.IO

Initializes a new instance of the BitBinaryReader class using stream input.

BitBinaryReader ( Stream input, Encoding encoding ) : System.IO

Initializes a new instance of the BitBinaryReader class using stream input and encoding.

ReadBoolean ( ) : bool

Reads a Boolean value from the current stream and advances the current position of the stream by one bit.

Method Details

BitBinaryReader() public method

Initializes a new instance of the BitBinaryReader class.
public BitBinaryReader ( BitStream input ) : System.IO
input BitStream
return System.IO

BitBinaryReader() public method

Initializes a new instance of the BitBinaryReader class.
public BitBinaryReader ( BitStream input, Encoding encoding ) : System.IO
input BitStream
encoding System.Text.Encoding
return System.IO

BitBinaryReader() public method

Initializes a new instance of the BitBinaryReader class using stream input.
public BitBinaryReader ( Stream input ) : System.IO
input System.IO.Stream
return System.IO

BitBinaryReader() public method

Initializes a new instance of the BitBinaryReader class using stream input and encoding.
public BitBinaryReader ( Stream input, Encoding encoding ) : System.IO
input System.IO.Stream
encoding System.Text.Encoding
return System.IO

ReadBoolean() public method

Reads a Boolean value from the current stream and advances the current position of the stream by one bit.
public ReadBoolean ( ) : bool
return bool