I have the following number: 4.3
4.3
I\'d like to display this number as 4,3 for some of our European friends.
4,3
I was under the impressi
Use a CultureInfo that has commas instead of decimal point (French for instance) :
string.Format(CultureInfo.GetCultureInfo("fr-FR"), "{0:0.0}", 4.3);