Tagged Questions

1
vote
2answers
67 views

Is there a Numeric Format String for the following?

I'm using C# and I have many integers. I was wondering if there was a numeric format string that would display the following: 12 as +12 This is needed as the application I'm working with is ...
0
votes
3answers
44 views

How to specify scaling down by 100 in custom numeric format string?

How to specify scaling down by 100 in custom numeric format string? I need to scale down a number by 100 (something like what the ',' operator does, scales it down by 1000) How do i accomplish this ...