vote up 3 vote down star
1

Is there any way I can specify a standard or custom numeric format string to always output the sign, be it +ve or -ve (although what it shoudl do for zero, I'm not sure!)

flag

49% accept rate

2 Answers

vote up 8 vote down check

Yes, you can. There is conditional formatting. See Conditional formatting in MSDN

eg:

string MyString = number.ToString("+#;#");

Where each section separated by a semicolon represents positive and negative numbers

or:

string MyString = number.ToString("+#;#;0");

if you don't want the zero to have a plus sign.

link|flag
Excellent - thanks! – Craig Shearer Dec 7 '08 at 22:57
vote up 3 vote down

Beware, when using conditional formatting the negative value doesn't automatically get a sign. You need to do

string MyString = number.ToString("+#;-#;0");
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.