Hi, I have a requirement to pad all single digits numbers with a starting zero. Can some one please suggest the best method? (ex 1 -> 01, 2 -> 02, etc)
|
|
|||
|
|
|
I'd call .ToString on the numbers, providing a format string which requires two digits, as below:
|
||
|
|
|
|
||
|
|
|
|
Assuming you're just outputing these values, not storing them
Here's a useful resource for all formats supported by .Net. |
||
|
|
