C# 클래스 Bigio.BigArray.Support_Classes.ArrayMap.BlockRange

Object of BlockRange class contain information of some range inside the block.
파일 보기 프로젝트 열기: 80LevelElf/Bigio 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
CommonStartIndex int
Count int
Subindex int

공개 메소드들

메소드 설명
BlockRange ( int subindex, int count, int commonStartIndex )

Create new instance of BlockRange.

Equals ( BlockRange other ) : bool

Check equal of current BlockRange and other BlockRange.

메소드 상세

BlockRange() 공개 메소드

Create new instance of BlockRange.
public BlockRange ( int subindex, int count, int commonStartIndex )
subindex int Subindex(internal block index) of starting of range.
count int Count of elements of the block.
commonStartIndex int Common zero-based index(across all collection) of block start of the block.

Equals() 공개 메소드

Check equal of current BlockRange and other BlockRange.
public Equals ( BlockRange other ) : bool
other BlockRange Other to check.
리턴 bool

프로퍼티 상세

CommonStartIndex 공개적으로 프로퍼티

Common zero-based index(across all collection) of block start of the block.
public int CommonStartIndex
리턴 int

Count 공개적으로 프로퍼티

Count of elements of the block.
public int Count
리턴 int

Subindex 공개적으로 프로퍼티

Subindex(internal block index) of start of range.
public int Subindex
리턴 int