top of page

Program to Convert String To Float In C#



In this article, we will write a C# program to convert String to Float using float.Parse() method


  class Program
    {
        static void Main(string[] args)
        {
            string str1 = "5.682";
            string str2 = "4.137";
            float flt1 = float.Parse(str1);
            float flt2 = float.Parse(str2);
            Console.WriteLine(flt1 + flt2);
            Console.ReadLine();

        }
    }

Output:

9.819


Read more :



Source: Wikipedia


The Tech Platform

0 comments
bottom of page