gpt4 book ai didi

c# - 如何将十进制属性格式化为货币?

转载 作者:IT王子 更新时间:2023-10-29 03:47:42 25 4
gpt4 key购买 nike

我想将小数值格式化为货币值。

我该怎么做?

最佳答案

属性可以返回他们想要的任何东西,但它需要返回正确的类型。

private decimal _amount;

public string FormattedAmount
{
get { return string.Format("{0:C}", _amount); }
}

有人问问题...如果它是一个可为 null 的小数怎么办。

private decimal? _amount;

public string FormattedAmount
{
get
{
return _amount == null ? "null" : string.Format("{0:C}", _amount.Value);
}
}

关于c# - 如何将十进制属性格式化为货币?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3479284/

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