How do I prevent my double value from being rounded when converting to a string? I have tried both Convert.ToString
and ToString()
with the same result.
For example my double may look something like 77.987654321
, and the two strings conversions convert to to 77.98765
. I need to keep the precision of the value as is.