×

C# Tutorial

Basics of .Net

C# Basics

C# Fundamentals

C# Operators

C# Loops

C# Type Conversions

C# Exception Handling

C# String Class

C# Arrays

C# List

C# Stack

C# Queue

C# Collections

C# Character Class

C# Class and Object

C# Namespaces

C# Delegates

C# Constructors

C# Inheritance

C# Operator Overloading

C# Structures

C# File Handling

C# Convert.ToInt32()

C# Int32 (int) Struct

C# DateTime Class

C# Uri Class

C# Database Connectivity

C# Windows

C# Other Topics

C# Q & A

C# Programs

C# Find O/P

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
Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

Copyright © 2025 www.includehelp.com. All rights reserved.