How to convert double to string without the power to 10 representation (E-05)
double value = 0.000099999999833333343; string text = value.ToString(); Consol
Use String.Format() with the format specifier. I think you want {0:F20} or so.
string formatted = String.Format("{0:F20}", value);