查看模型格式十进制?删除小数后

时间:2016-04-12 10:56:23

标签: asp.net-mvc c#-4.0 viewmodel

我在atrribute下使用格式化数字(在值中附加逗号)。现在我想删除十进制后的零。如何用以下属性实现同样的目标。

 [DisplayFormat(DataFormatString = "{0:N}")]
  public decimal? Y01Amount { get; set; }

感谢任何帮助。

2 个答案:

答案 0 :(得分:2)

  [DisplayFormat(DataFormatString = "{0:n0}")]

使用上述属性,可以在单个DisplayFormat

中实现这两种情况

答案 1 :(得分:0)

 adapter = new FoodMenuAdapter(this, Food_menu, Food_list);
 Exp_list.setAdapter(adapter);