I have a list of strings of the format \"x,y\". I would like to make them all into Points. The best Point constructor I can find takes two ints. What is the best way in C# t
There is Point.Parse (System.Windows.Point.Parse, WindowsBase.dll) and then you don't need to mess around with regex or string splitting etc.
Point.Parse
http://msdn.microsoft.com/en-us/library/system.windows.point.parse.aspx
PK :-)