Formatting Numbers as Strings with Commas in place of Decimals

Posted by DaveDev on Stack Overflow See other posts from Stack Overflow or by DaveDev
Published on 2009-10-13T09:45:00Z Indexed on 2010/05/05 18:28 UTC
Read the original article Hit count: 164

Filed under:
|
|
|
|

I have the following number: 4.3

I'd like to display this number as 4,3 for some of our European friends.

I was under the impression that the following line would do the trick:

string ret = string.Format("{0:0,0}", 4.3); // returns "04", not "4,3"

Am I using the incorrect string?

© Stack Overflow or respective owner

Related posts about c#

Related posts about number