C# 클래스 CSharpUtils.BitWriter

Helper class for writing bit values, bit blocks in LSB and MSB bits formats.
파일 보기 프로젝트 열기: soywiz/csharputils

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
Align ( ) : void
BitWriter ( Stream stream ) : System.IO
WriteBit ( bool value ) : void
WriteLSB ( int value, int length ) : void
WriteMSB ( int value, int length ) : void

메소드 상세

Align() 공개 메소드

public Align ( ) : void
리턴 void

BitWriter() 공개 메소드

public BitWriter ( Stream stream ) : System.IO
stream Stream
리턴 System.IO

WriteBit() 공개 메소드

public WriteBit ( bool value ) : void
value bool
리턴 void

WriteLSB() 공개 메소드

public WriteLSB ( int value, int length ) : void
value int
length int
리턴 void

WriteMSB() 공개 메소드

public WriteMSB ( int value, int length ) : void
value int
length int
리턴 void