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
string strdScaleFactor = dScaleFactor.ToString(); // where dScaleFactor = 3.531467E-05 decimal decimalScaleFactor = Decimal.Parse(strdScaleFactor, System.Globalization.NumberStyles.Float);