Formatting Numbers as Strings with Commas in place of Decimals

I think:

string.Format(System.Globalization.CultureInfo.GetCultureInfo("de-DE"), "{0:0.0}", 4.3); 

should do what you want.

Leave a Comment