c# - Format number as money -


How can I format numbers to look like this: 9,000 my database field is in the money data type, when I I draw it like this: 9 000.0000 which I do not see right (I want to look like this real money format)

When you can call string Format, I think it's easy to just call.

  decimal wealth = 9000m; String formatted money = wealth. Toaster ("c");  

Comments