Double to string conversion without scientific notation

前端 未结 17 1551
無奈伤痛
無奈伤痛 2020-11-22 15:33

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

17条回答
  •  天命终不由人
    2020-11-22 15:49

    string strdScaleFactor = dScaleFactor.ToString(); // where dScaleFactor = 3.531467E-05
    
    decimal decimalScaleFactor = Decimal.Parse(strdScaleFactor, System.Globalization.NumberStyles.Float);
    

提交回复
热议问题