I read many articles about number format strings, for example: http://msdn.microsoft.com/en-us/library/0c899ak8.aspx
I really don't understand how to write a better format string. To get an excluded result, I can write several ways. Example: Type 1234567890 as the text "1,234,567,890". These methods give the same result:
1234567890.ToString("#,#") 1234567890.ToString("#,##")
"#, ##" is popular on the Internet, but why? Please give me information on how to write a good format string. Thanks.
source share