C# 클래스 Iaik.Utils.BitMap

Provides the ability to access individual bits and export them as a byte array.
상속: Iaik.Utils.Serialization.AutoStreamSerializable
파일 보기 프로젝트 열기: areiter/InMemoryFuzzing 1 사용 예제들

공개 메소드들

메소드 설명
BitMap ( Stream src ) : System
BitMap ( byte selectionBits ) : System
BitMap ( int bitsize ) : System

The bit size ceiled to a multiple of 8

GetBit ( int index ) : bool

SetBit ( int index, bool value ) : void

Sets the specified bit to the specified value

SetBitmap ( bool value ) : void

Sets the whole bitmap to the specified value

this ( int index ) : bool

메소드 상세

BitMap() 공개 메소드

public BitMap ( Stream src ) : System
src Stream
리턴 System

BitMap() 공개 메소드

public BitMap ( byte selectionBits ) : System
selectionBits byte
리턴 System

BitMap() 공개 메소드

The bit size ceiled to a multiple of 8
public BitMap ( int bitsize ) : System
bitsize int
리턴 System

GetBit() 공개 메소드

public GetBit ( int index ) : bool
index int
리턴 bool

SetBit() 공개 메소드

Sets the specified bit to the specified value
public SetBit ( int index, bool value ) : void
index int
value bool
리턴 void

SetBitmap() 공개 메소드

Sets the whole bitmap to the specified value
public SetBitmap ( bool value ) : void
value bool
리턴 void

this() 공개 메소드

public this ( int index ) : bool
index int
리턴 bool