I wish to parse a double from a string (e.g. “-1.1”), but the double.Parse method makes the comma vanish, so I get -11 instead of -1.1. And more surprisingly, this issue doesn’t appear in Visual Studio. Am I missing something?
Check regional settings. In some countries the dot means thousands separator, and a comma is the decimal separator.
I’ve been there in some many languages…