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

Equals() public method

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