Double to string conversion without scientific notation

前端 未结 17 1327
無奈伤痛
無奈伤痛 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:47

    I could be wrong, but isn't it like this?

    data.ToString("n");
    

    http://msdn.microsoft.com/en-us/library/dwhawy9k.aspx

提交回复
热议问题