Exemplo n.º 1
0
 public bool Equals(GeometryMultiPolygon other)
 {
     bool? nullable = base.BaseEquals(other);
     if (!nullable.HasValue)
     {
         return this.Polygons.SequenceEqual<GeometryPolygon>(other.Polygons);
     }
     return nullable.GetValueOrDefault();
 }
Exemplo n.º 2
0
        public bool Equals(GeometryMultiPolygon other)
        {
            bool?nullable = base.BaseEquals(other);

            if (!nullable.HasValue)
            {
                return(this.Polygons.SequenceEqual <GeometryPolygon>(other.Polygons));
            }
            return(nullable.GetValueOrDefault());
        }
Exemplo n.º 3
0
 public bool Equals(GeometryMultiPolygon other)
 {
     return(this.BaseEquals(other) ?? this.Polygons.SequenceEqual(other.Polygons));
 }