I am reading in a value from a PLC via a third party library, however when saved as a double the value appears to be in scientific notation.
The value in the PLC is 1.234
however, when debugging the application, the value being stored in the double is 5.27326315571927E-315
I am displaying this in a label, however I want to display it as 1.234
rather an as scientific notation.
How can I convert this?