예제 #1
0
        public bool Equals(Bounds bounds)
        {
            if (bounds == null)
            {
                return(false);
            }

            return(SouthWest.Equals(bounds.SouthWest) && NorthEast.Equals(bounds.NorthEast));
        }
예제 #2
0
 public bool Equals(LatLngBounds other)
 {
     return(SouthWest.Equals(other.SouthWest) &&
            NorthEast.Equals(other.NorthEast));
 }