Beispiel #1
0
 protected bool Equals(GeoMultiPoint other)
 {
     return(base.Equals(other) && Points.SequenceEqual(other.Points));
 }
Beispiel #2
0
 static string GeometryToWkt(GeoMultiPoint multiPoint)
 {
     return(string.Format("({0})", string.Join(",", multiPoint.Points.Select(GeometryToWkt))));
 }