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