Bigio.BigArray.Support_Classes.ArrayMap.BlockRange.BlockRange C# (CSharp) Method

BlockRange() public method

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.
        public BlockRange(int subindex, int count, int commonStartIndex)
        {
            Subindex = subindex;
            CommonStartIndex = commonStartIndex;
            Count = count;
        }