📅  最后修改于: 2022-03-11 14:49:15.244000             🧑  作者: Mango
private decimal? _amount;
// For nullable decimals
public string FormattedAmount
{
get
{
return _amount == null ? "null" : string.Format("{0:C}", _amount.Value);
}
}