Hi,
I'm sure this is simple, but I cannot seem to find it:
I need:
1. The sign to always be shown
2. The thousand "," separator
I'm currently using {0:N} for the thousand separator, how to I force it to
show "-1,234" and "+1,234"; i.e. the "+" sign when positive.
Thanks,
Hilton
Sergey Bogdanov - 08 Jan 2006 13:29 GMT
Try this:
String.Format("{0:+0,0;-0,0}", 1234);
--
Sergey Bogdanov [.NET CF MVP, MCSD]
http://www.sergeybogdanov.com
> Hi,
>
[quoted text clipped - 10 lines]
>
> Hilton
Hilton - 09 Jan 2006 17:06 GMT