fivenine.UnifiedMaps.MapRegion.Equals C# (CSharp) Method

Equals() protected method

Determines whether the specified MapRegion is equal to the current.
protected Equals ( MapRegion other ) : bool
other MapRegion The object to compare with the current object.
return bool
        protected bool Equals(MapRegion other)
            => other != null && _topLeft.Equals(other._topLeft) && _bottomRight.Equals(other._bottomRight);

Same methods

MapRegion::Equals ( object obj ) : bool