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 r
Convert.ToString
ToString()
Jon Skeet's DoubleConverter class has a ToExactString() method which will return the exact value of the double as a string.
DoubleConverter
ToExactString()
http://www.yoda.arachsys.com/csharp/DoubleConverter.cs