Formatting Number with Leading Zeroes in C#

The .NET Framework provides the format strings like “D” and “X” which can be easily used by the developers to format the number with leading zeroes in C#.

For example , assume that the number is 589 and you want it to print as 00589 , you could use the format specifier “D5” where 5 is the total number of digits of the number to output.

Formatting Number with Leading Zeroes in C#

using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;

namespace GinktageApp
{
    internal class Program
    {
        private static void Main(string[] args)
        {
            int InputNumber = 00589;
            Console.WriteLine(InputNumber.ToString("D5", CultureInfo.InvariantCulture));
            Console.ReadLine();
        }
    }
    
}

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

C# Compiler Error CS0442 – ‘Property’: abstract properties cannot have private accessors Reason for the Error You’ll get this error...
This is a really simple one . Below is a simple example of an enum called “Designation” defined with the...
This blog post explain the usage of the Checked Block in .NET and how you can use them in Visual...