C# 클래스 Gammtek.Conduit.IO.BitBinaryWriter

A BinaryWriter implementation to write individual bits to a stream.
상속: System.IO.BinaryWriter
파일 보기 프로젝트 열기: ME3Explorer/ME3Explorer

공개 메소드들

메소드 설명
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.

메소드 상세

BitBinaryWriter() 공개 메소드

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

BitBinaryWriter() 공개 메소드

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

BitBinaryWriter() 공개 메소드

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
리턴 System.IO

BitBinaryWriter() 공개 메소드

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
리턴 System.IO

BitBinaryWriter() 공개 메소드

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
리턴 System.IO

Write() 공개 메소드

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
리턴 void