I want to have numbers with a fixed digit count.
example: 00001, 00198, 48484
I can do like this:
string value; if (number < 10)
Yes, there is:
string value = String.Format("{0:D5}", number);