C# Class Gammtek.Conduit.IO.BitBinaryWriter

A BinaryWriter implementation to write individual bits to a stream.
Inheritance: System.IO.BinaryWriter
Datei anzeigen Open project: ME3Explorer/ME3Explorer

Public Methods

Method Description
BitBinaryWriter ( ) : System.IO

Initializes a new instance of the BitBinaryWriter class.

BitBinaryWriter ( BitStream stream ) : System.IO

Initializes a new instance of the BitBinaryWriter class with the underlying stream and default encoding (UTF8).

BitBinaryWriter ( BitStream stream, Encoding encoding ) : System.IO

Initializes a new instance of the BitBinaryWriter class with the underlying stream and encoding.

BitBinaryWriter ( Stream stream ) : System.IO

Initializes a new instance of the BitBinaryWriter class with the underlying stream and default encoding (UTF8).

BitBinaryWriter ( Stream stream, Encoding encoding ) : System.IO

Initializes a new instance of the BitBinaryWriter class with the underlying stream and encoding.

Write ( bool value ) : void

Writes a one-bit Boolean value to the current stream, with 0 representing false and 1 representing true.

Method Details

BitBinaryWriter() public method

Initializes a new instance of the BitBinaryWriter class.
public BitBinaryWriter ( ) : System.IO
return System.IO

BitBinaryWriter() public method

Initializes a new instance of the BitBinaryWriter class with the underlying stream and default encoding (UTF8).
public BitBinaryWriter ( BitStream stream ) : System.IO
stream BitStream
return System.IO

BitBinaryWriter() public method

Initializes a new instance of the BitBinaryWriter class with the underlying stream and encoding.
public BitBinaryWriter ( BitStream stream, Encoding encoding ) : System.IO
stream BitStream
encoding System.Text.Encoding
return System.IO

BitBinaryWriter() public method

Initializes a new instance of the BitBinaryWriter class with the underlying stream and default encoding (UTF8).
public BitBinaryWriter ( Stream stream ) : System.IO
stream System.IO.Stream
return System.IO

BitBinaryWriter() public method

Initializes a new instance of the BitBinaryWriter class with the underlying stream and encoding.
public BitBinaryWriter ( Stream stream, Encoding encoding ) : System.IO
stream System.IO.Stream
encoding System.Text.Encoding
return System.IO

Write() public method

Writes a one-bit Boolean value to the current stream, with 0 representing false and 1 representing true.
public Write ( bool value ) : void
value bool
return void