I am trying to parse string \"0.0000\" with double.TryParse() but I have no idea why would it return false in this particular example. When I pass integer-like stri
double.TryParse()
To change the culture to something that has "." as decimal separator use:
Thread.CurrentThread.CurrentCulture = new CultureInfo("en-GB");