In English-US, the decimal separator symbol is "." So if I want to write the result of 100 + 25/100, it will be 100.25 (obviously).
How will I write it in a constant in Visual Studio if I'm a french developer living in France? In France they use a comma (",") as a decimal seperator.
Will I write
const double x = 100.25
or
const double x = 100,25
Thank you