Double to string conversion without scientific notation

前端 未结 17 1471
無奈伤痛
無奈伤痛 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 16:12

    I had a similar problem and this worked for me:

    doubleValue.ToString("F99").TrimEnd('0')
    

    F99 may be overkill, but you get the idea.

提交回复
热议问题