req:Coordinate.toString() should return x,y instead of (x,y)
Brought to you by:
mrijk
when dealing with coord I'd like toString to return x,y instead of (x, y).
would be easier with svg syntax for path
see Coordinate.cs
public override string ToString()
{
return string.Format("({0}, {1})", X, Y); <= replace with {0},{1}
}
The function ToString just formats an object in some human readable format. It's not really intended to have a specific format you can rely upon.
If you want to export to SVG it probably makes more sense to extend to your own class or maybe use an extension method in C#.
I will probably close this issue as WontFix.
I'll go with extensions.
But your readability argument won't work with french settings ;) coz double are written like this xxx,yyy (and not the US xxx.yyy)
I think you should add a culture invariant transformation of double.