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

BlockInfo() public method

Create new instance of BlockInfo with specified data.
public BlockInfo ( int indexOfBlock, int commonStartIndex, int count )
indexOfBlock int Index of block inside block collection.
commonStartIndex int Common start index of current block.
count int Count of elements inside current block.
        public BlockInfo(int indexOfBlock, int commonStartIndex, int count)
        {
            IndexOfBlock = indexOfBlock;
            CommonStartIndex = commonStartIndex;
            Count = count;
        }