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

BinaryReader that supports reading and writing individual bits from the stream.
상속: System.IO.BinaryReader
파일 보기 프로젝트 열기: ME3Explorer/ME3Explorer

공개 메소드들

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

메소드 상세

BitBinaryReader() 공개 메소드

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

BitBinaryReader() 공개 메소드

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

BitBinaryReader() 공개 메소드

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

BitBinaryReader() 공개 메소드

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

ReadBoolean() 공개 메소드

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