gpt4 book ai didi

c# - 将 double 转换为字符串 : Culture specific

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

假设我的方法有一个 Double 类型的参数。但有时我传递的是像 7 这样的 int 而不是像 7.0 这样的 double ,所以如果我使用 ToString 方法,那么 7 将是 "7",但我希望它是 "7.0",现在我还需要考虑文化,因为有时法语可能使用“,”表示十进制,所以它应该是“7,0”……我该如何转换为字符串?

最佳答案

你在找这个吗?

double x = 7.0;

String Display = x.ToString("0.0", CultureInfo.CreateSpecificCulture("de-DE"));

关于c# - 将 double 转换为字符串 : Culture specific,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5877664/

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