How to convert a double into a floating-point string representation without scientific notation in the .NET Framework?
\"Small\" samples (effective numbers may be of
My solution was using the custom formats. try this:
double d; d = 1234.12341234; d.ToString("#########0.#########");