Tagged Questions
2
votes
3answers
14k views
String.Format(“{0:C2}”, -1234) (Currency format) treats negative numbers as positive
Hi I am using String.Format("{0:C2}", -1234)
to format numbers.
is always formats the amount to a positive number, while I want it to become $*-*1234
1
vote
2answers
91 views
Format Negative numbers in parenthesis BUT NOT with $ symbol?
I have seen all over the internet to format a NEGATIVE double value with a parenthesis WITH a $ symbol ie. currency type.
I am looking for a .NET format string, to format
12345.67 = 12,345.67
...