Concatenating C # String.Format format parameters
1 answer
You probably just want to add %
to your custom format :
string.Format("{0:+#.##%;-#.##%;0}", 1.45); // output +145%
+4
source to share