私が持っている場合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
逆のプロセスを取得するにはどうすればよいですか?