如果我有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));
我可以string
使用以下方法获得等价物:
string str = points.ToString();
现在str
是:
0,0 10,10 20,20 30,30
我怎样才能得到相反的过程?