wyrd
Well-known member
Using the currency string format;
string.Format("{0:C}", total)
how can I display negatives properly? In this format is shows a negative currency like this;
($32.53)
... or is that the proper way to show negative money values? Im looking for something more like this;
-$32.53
Thanks in advance.
string.Format("{0:C}", total)
how can I display negatives properly? In this format is shows a negative currency like this;
($32.53)
... or is that the proper way to show negative money values? Im looking for something more like this;
-$32.53
Thanks in advance.