我在atrribute下使用格式化数字(在值中附加逗号)。现在我想删除十进制后的零。如何用以下属性实现同样的目标。
[DisplayFormat(DataFormatString = "{0:N}")]
public decimal? Y01Amount { get; set; }
感谢任何帮助。
答案 0 :(得分:2)
[DisplayFormat(DataFormatString = "{0:n0}")]
使用上述属性,可以在单个DisplayFormat
中实现这两种情况答案 1 :(得分:0)
adapter = new FoodMenuAdapter(this, Food_menu, Food_list);
Exp_list.setAdapter(adapter);