wyrd
Senior Contributor
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? I'm 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? I'm looking for something more like this;
-$32.53
Thanks in advance.