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 ); } }
🙂