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
Like this:
string[] coords = str.Split(','); Point point = new Point(int.Parse(coords[0]), int.Parse(coords[1]));