Beispiel #1
0
 static string GeometryToWkt(GeoMultiPolygon multiPolygon)
 {
     return(string.Format("({0})", string.Join("),(", multiPolygon.Polygons.Select(GeometryToWkt))));
 }
 protected bool Equals(GeoMultiPolygon other)
 {
     return(base.Equals(other) && Polygons.SequenceEqual(other.Polygons));
 }