Conversion from String to Double using C#

By | April 12, 2012

Hi,

Sometimes you may need to convert string to double using C#, see the following lines of code to see how you could do it.

class MainClass
{
  static void Main()
  {

    string myString = " 3.14159";
    double myValue= System.Convert.ToDouble(myString );

  }
}

🙂

Leave a Reply

Your email address will not be published. Required fields are marked *