Contact: aviboots(AT)netvision.net.il
39,885 questions
51,811 answers
573 users
using System; class Program { static void Main() { int number = 319; // Format the number with leading zeros to make it 6 digits string formatted = number.ToString("D6"); Console.WriteLine(formatted); } } /* run: 000319 */
using System; class Program { static void Main() { int number = 319; // Format the number with leading zeros to make it 6 digits string formatted = string.Format("{0:000000}", number); Console.WriteLine(formatted); } } /* run: 000319 */