我有一个值为 2.54 的字符串变量 x,在将此值绑定到我的 ui 期间,它显示为 2,54。我知道这与设备当前的文化有关。但我不知道如何解决这个问题。我是 Visual Studio 的新手,对字符串格式不太了解。请任何人帮我解决这个问题。
double x = 2.54;
displayValue = x.ToString(); // Here display value is the property which i bind in to UI. There is nothing much in my code.