If I have a PointCollection:
var points = new PointCollection();
points.Add(new Point(0, 0));
points.Add(new Point(10, 10));
points.Add(new Point(20, 20));
points.Add(new Point(30, 30));
I can get the equivalent string using:
string str = points.ToString();
And now str is:
0,0 10,10 20,20 30,30
How can I get the reverse process?
Just use
PointCollection.Parsemethod: