如果我有一个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
如何获得相反的过程?
最佳答案
只需使用PointCollection.Parse
method:
PointCollection points = PointCollection.Parse(str);
关于c# - 点到PointCollection的字符串,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11159239/