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