In my locale, the decimal separator is the '.' Character.
However, I would still like to write a C # application that works with numbers using '.' as a decimal separator.
string b = "0,5";
double db = double.Parse(b);
string a = "0.5";
double da = double.Parse(a);
clamp source
share