我正在尝试格式化一个整数,并希望将其显示为#,## 0。
在View中,我有一个列表
<input asp-for="@Model.Application[i].abc" class="form-control input-responsive" />
所以在我的应用程序模型中,我有一个属性'abc' 我要格式化。
[Display(Name = "ABC")]
public int abc { get; set; }
这可能是最好的方法。
我尝试使用
[DisplayFormat(DataFormatString = "{0:N0}")]
但是没有得到正确的结果。
答案 0 :(得分:1)
您可以尝试"{0:N2}0"
。
如果我理解你的问题是错误的,请纠正我。