Hello, I have a double value similar to this in VB.NET:
Dim value = 9.729000000000001
When converting to a string, I get the following:
value.tostring() "9.729"
I am trying to add formatting:
value.tostring("0.00000000000000")
But this did not work (I am losing ending 1).
How can I save all my numbers?
source
share