You are hereStandard Numeric Format Strings
Standard Numeric Format Strings

"P" or "p"
Percent
Result: Number multiplied by 100 and displayed with a percent symbol.
Supported by: All numeric types.
Precision specifier: Desired number of decimal places.
Default precision specifier: Defined by System.Globalization.NumberFormatInfo.
More information: The Percent ("P") Format Specifier.
1 ("P", en-US) -> 100.00 %
1 ("P", fr-FR) -> 100,00 %
-0.39678 ("P1", en-US) -> -39.7 %
-0.39678 ("P1", fr-FR) -> -39,7 %
Tags