Home »
C#
C# | Left padding of a float number (left alignment) with spaces using String.Format() method
C# | String.Format() method example: Here, we are going to learn how to align (left padding) a float number using String.Format() method in C#?
Submitted by IncludeHelp, on November 02, 2019
To align a float number with spaces, we can use String.Format() in C#, here is the example.
using System;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Demo for space alignment in floating point number");
Console.WriteLine(String.Format("{0,10:0.0}", 512.4567));
Console.WriteLine(String.Format("{0,-10:0.0}", 512.4567));
Console.WriteLine(String.Format("{0,10:0.0}", -512.4567));
Console.WriteLine(String.Format("{0,-10:0.0}", -512.4567));
Console.WriteLine();
}
}
}
Output
Demo for space alignment in floating point number
512.5
512.5
-512.5
-512.5