This is driving me crazy. I have the following string in a ASP.NET 2.0 WebForm Page
string s = \"0.009\";
Simple enough. Now, if my culture
what Jess's writing works for me. just for anyone who'd need to try out how to get "invariant culture": it looks this
double d = Double.Parse(myString, CultureInfo.InvariantCulture);
(first stackoverflow post, so yea, rather marginal ;)