예제 #1
0
 public bool Equals(GeometryCollection other)
 {
     bool? nullable = base.BaseEquals(other);
     if (!nullable.HasValue)
     {
         return this.Geometries.SequenceEqual<Geometry>(other.Geometries);
     }
     return nullable.GetValueOrDefault();
 }
예제 #2
0
 public bool Equals(GeometryCollection other)
 {
     return(this.BaseEquals(other) ?? this.Geometries.SequenceEqual(other.Geometries));
 }
예제 #3
0
 public bool Equals(GeometryCollection other)
 {
     return this.BaseEquals(other) ?? this.Geometries.SequenceEqual(other.Geometries);
 }