Currency issue

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I want to achieve $10,000 and not $10,000.00. I currently have

Decimal.Round(my Value).ToString("C")

Any ideas?

Thanks
 
I want to achieve $10,000 and not $10,000.00. I currently have
Decimal.Round(my Value).ToString("C")

..ToString("C0")
whereas the digit after the "C" gives us the number of positions after
the decimal point.

hth
Markus
 
Back
Top