Hi I am wondering how do I add numbers without displaying them while in foreach loop expamle:
@{ int intVariable = 0; }
@foreach(var item in @Model.Collection)
{
@(intVariable += item.MyNumberOfInteres) //-\>how can I calculate this without it being rendered to the website ?
//some Html code.......
}