gpt4 book ai didi

c# - 十进制转字符串问题

转载 作者:太空狗 更新时间:2023-10-30 00:00:20 25 4
gpt4 key购买 nike

Math.Round((ClosePrice - OpenPrice), 5) = -0.00001

但是当我将它转换成 tostring 时,它会给出“-1E-05”

Math.Round((ClosePrice - OpenPrice), 5).ToString() = "-1E-05"

为什么会这样?我怎样才能得到“-0.00001”

最佳答案

您可以使用 MSDN's Standard Numeric Format Strings 上演示的格式说明符

double foo = -0.00001;
Console.WriteLine(foo.ToString("f5"));

关于c# - 十进制转字符串问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8529335/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com