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 an appropriate format specifier.
string.Format
This blog post has a lot of examples: http://blogs.msdn.com/kathykam/archive/2006/03/29/564426.aspx