I have a list and I want to display Sum of one of the properties.
I tried this, but it is not adding value, but it is working as string Concat.
@foreach (var item in Model.Details)
{
int a = 0;
a += Convert.ToInt32(item.Amt);
@Html.DisplayTextFor(m => a)
}