gpt4 book ai didi

C# 货币转字符串

转载 作者:可可西里 更新时间:2023-11-01 08:01:50 26 4
gpt4 key购买 nike

我正在查询一个返回货币值的数据库字段,我将其分配给一个字符串,但它在末尾添加了额外的 00。

例如查询返回 30.00

我将其分配给一个字符串 (string value = Convert.ToString(ReturnValue);)但是当我输出它时,它显示为 30.0000

您能告诉我哪里出了问题以及解决这个问题的最佳方法吗?

最佳答案

马格里夫,

我最好的建议是使用 SqlMoney 类型将其转换为 double 值。从那里,您可以随心所欲地输出它!

这是一个例子:

System.Data.SqlTypes.SqlMoney ReturnValue;

//Set your returnValue with your SQL statement
ReturnValue = ExecuteMySqlStatement();

//Get the format you want

//$30.00
string currencyFormat = ReturnValue.ToDouble().ToString("c");

//30.00
string otherFormat = ReturnValue.ToDouble().ToString("0.00");

有关更多格式选项,请查看 MSDN:

http://msdn.microsoft.com/en-us/library/system.double.tostring.aspx

祝你好运,希望对你有所帮助。

关于C# 货币转字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/608667/

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