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