Write an integer to x number of places.
How would I write an integer to a desired number of places. For example, lets say int x = 50; Now, when I write x to a text box it displaces 50, but I want x to display 0050. I could do something simple like "00" + x, but when the number reaches the 100s or 1000s, I do not want the extra zeros.
Re: Write an integer to x number of places.
Re: Write an integer to x number of places.
// Convert 'number' to a string and ensure that it
// is at least 4 characters long by prepending it with
// zeros if it is shorter than 4.
int number = GetNumber ();
string result = number.ToString ().PadLeft (4, '0');