How to convert a string containing an exponential number to decimal and back to string
问题 I'm converting code between delphi and c#. Values are stored as strings in a text file from the delphi app. An example of the stored value is : '4.42615029219009E-5' Now in my c# app I need to read in that string value and then later have the capability to write out the value again. Initially I used code similar to: string stringField = "4.42615029219009E-5"; double someMoneyVar = Convert.ToDouble(stringField) later if I need to recreate the text file with the value of someMoneyVar then using