Пример #1
0
 public bool Equals(GeographyMultiPolygon other)
 {
     bool? nullable = base.BaseEquals(other);
     if (!nullable.HasValue)
     {
         return this.Polygons.SequenceEqual<GeographyPolygon>(other.Polygons);
     }
     return nullable.GetValueOrDefault();
 }
Пример #2
0
        public bool Equals(GeographyMultiPolygon other)
        {
            bool?nullable = base.BaseEquals(other);

            if (!nullable.HasValue)
            {
                return(this.Polygons.SequenceEqual <GeographyPolygon>(other.Polygons));
            }
            return(nullable.GetValueOrDefault());
        }
Пример #3
0
 public bool Equals(GeographyMultiPolygon other)
 {
     return(this.BaseEquals(other) ?? this.Polygons.SequenceEqual(other.Polygons));
 }
 public bool Equals(GeographyMultiPolygon other)
 {
     return this.BaseEquals(other) ?? this.Polygons.SequenceEqual(other.Polygons);
 }