I have a string variable x with value 2.54, During the time of binding this value in to my ui it displays like 2,54. I know this is something related device's current culture. But i dnt know how to fix this issue. I am new to visual studio & and don't much about string formatting . Please anyone help me to fix this issue.
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.