vote up 2 vote down star
2

Right now I have

double numba = 5212.6312
String.Format("{0:C}", Convert.ToInt32(numba) )

This will give me

$5,213.00

but I don't want the ".00".

I know I can just drop the last three characters of the string every time to achieve the effect, but seems like there should be an easier way.

flag

1  
numba is a crap name for a variable... One more character would have given you "number" – Omar Kooheji May 20 at 20:40
1  
Omar is correct, however "number" is also a crap name for a variable. – Boo May 20 at 20:45

5 Answers

vote up 5 vote down check

First - don't keep currency in a double - use a decimal instead. Every time. Then use "C0" as the format specifier:

decimal numba = 5212.6312M;
string s = numba.ToString("C0");
link|flag
No floating point should really be used as a currency field. An integer storing in cents/pence/lowest allowable currency unit is the only way to avoid rounding errors (and a BigInt library if you need numbers beyond a long ints range :)) – workmad3 May 20 at 20:39
3  
An integer has similar rounding issues as decimal... decimal is essentially a largish integer with a precision specifier. Most things you can do with int you can do with decimal, plus decimal is 96-bits (rather that 32 or 64 for int and long). Most currencies fit into 96 bits... – Marc Gravell May 20 at 20:43
I'll second the prohibition on using doubles for currency. The imprecision can lead to trouble and, if bad enough, audits. – Jacob Proffitt May 20 at 23:24
I would just add that the prohibition on using floating-points for amounts of money is not always relevant. For example, with non-precise future projections, doubles are fine. – Mark Pattison Jun 16 at 10:45
Don't really agree here. Most investment banks store their values doubles. As long as you know what you are doing and know about cancellations and precision issues it should be fine. – Mats Fredriksson Jun 16 at 10:48
vote up 1 vote down
Console.WriteLine(numba.ToString("C0"));
link|flag
vote up 1 vote down

Try {0:C0}

link|flag
vote up 1 vote down

This should do the job:

String.Format("{0:C0}", Convert.ToInt32(numba))

The number after the C specifies the number of decimal places to include.

I suspect you really want to be using the decimal.aspx) type for storing such numbers however.

link|flag
vote up 0 vote down

I think the right way to achieve your goal is with this:

Thread.CurrentThread.CurrentCulture.NumberFormat.CurrencyDecimalDigits = 0;

and only then you should do the Format call:

String.Format("{0:C0}", numba)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.