2
Answers

NP140 NumberFormatInfo and Double.Parse()

Ask a question
Maha

Maha

16y
4.8k
1

Hi Guys

 

NP140 NumberFormatInfo and Double.Parse()

 

In the following program what is the function of NumberFormatInfo and Double.Parse() method. Because I am unable to explain the output of program.   

 

Please explain.

 

Thank you

 

using System;

using System.Globalization;

//using System.Text;

 

public class NumParsingApp

{

    public static void Main(string[] args)

    {

        string u = "AA -1,234,567.890  ";

 

        NumberFormatInfo ni = new NumberFormatInfo();

 

        ni.CurrencySymbol = "AA";

 

        double h = Double.Parse(u, NumberStyles.Any, ni);

 

        Console.WriteLine("h = {0:F}", h);

    }

}

/*

h = -1234567.89

*/


Answers (2)