I have the following string, which represents a series of pixel based points.
"58,21 1680,21 1680,25 58,25"
I need to convert each one into a Point, but the Point.Parse(s) assumes the calls Convert.ToSingle() for each x,y.
I could easily utilize Utils.Converter.ToPoints("58px"), but Utils is an internal class..
Any other way to do this?
Thanks,
James