Hello,
I am using the format ToString("0,0") to display a number like
5000 as 5,000but if the number is 0 - 9, it displays 01, 02, 03, etc. Does anyone know the correct syntax so it does not display the leading 0?
Thanks, XaiSoft
|
|
Hello, I am using the format ToString("0,0") to display a number like 5000 as 5,000but if the number is 0 - 9, it displays 01, 02, 03, etc. Does anyone know the correct syntax so it does not display the leading 0? Thanks, XaiSoft
|
||||
|
|
|
Also, this may help you further |
||||||
|
|
|
|
||
|
|
|
What you are looking for is the string formatter "N0". Example:
Prints:
More information here. |
||
|
|