M
michael
You can use a custom format specifier to format a numeric to a string... e.g
int i= 2;
string formatSpecifier = "## px";
i.ToString(formatSpecifier);
But given given a string and the custom format specifier used to format it,
how can you parse that string back to a numeric ?
I've searched the documentation yet an answer alludes me.
Michael
int i= 2;
string formatSpecifier = "## px";
i.ToString(formatSpecifier);
But given given a string and the custom format specifier used to format it,
how can you parse that string back to a numeric ?
I've searched the documentation yet an answer alludes me.
Michael