Why does the Standard Numeric Format for percentages include a space?
The Back Story I have some decimal values which I am displaying as strings on a web page as part of a larger string. I started off using a http://msdn.microsoft.com/en-us/library/dwhawy9k.aspx]">Standard Numeric Format String to output this. E.g. myDecimal.ToString("P0") The 0 after the P tells it I want no decimal places. This works...