Why double.TryParse(“0.0000”, out doubleValue) returns false ?

后端 未结 9 745
一个人的身影
一个人的身影 2021-02-03 20:38

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

9条回答
  •  我在风中等你
    2021-02-03 21:26

    To change the culture to something that has "." as decimal separator use:

    Thread.CurrentThread.CurrentCulture = new CultureInfo("en-GB");
    

提交回复
热议问题