I have:
int i=8;
i.ToString();
if i do this i get "8" i want "08"
is possible setting an option in tostring parameter ?
|
|
Also you can use the string.Format() methods (like Other useful examples:
|
|||||||||||||
|
|
|||
|
|
|
I would use the .ToString() parameter but here is another option:
|
|||
|
|
|
I've found the following link useful when dealing with string formatting in C#: |
|||
|
|
|
I can't understand what do you mean by that. Why don't you add 0 to a string manually? |
|||||
|