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

Equals() public method

Check equal of current BlockInfo and other BlockInfo.
public Equals ( BlockInfo other ) : bool
other BlockInfo Other to check.
return bool
        public bool Equals(BlockInfo other)
        {
            return IndexOfBlock == other.IndexOfBlock && CommonStartIndex == other.CommonStartIndex && Count == other.Count;
        }