Home »
C#
C# | Adding text with a float numbers using String.Format() method
C# | String.Format() method example: Here, we are going to learn how to text with a float number using String.Format() method in C#?
Submitted by IncludeHelp, on November 04, 2019
To add text with a float number, 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 put characters and words in floating point number");
Console.WriteLine(String.Format("{0:Number is 0.0}", 256.3));
Console.WriteLine(String.Format("{0:0xxx.yyy0}", 256.3));
Console.WriteLine();
}
}
}
Output
Demo for put characters and words in floating point number
Number is 256.3
256xxx.yyy3
In the above program we put "Number is" in first example and 'x' and 'y' in second example.