C# Класс Bigio.BigArray.Support_Classes.ArrayMap.BlockRange

Object of BlockRange class contain information of some range inside the block.
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
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