.net mvc foreach with index

80

.net mvc foreach with index -

@{int i = 0;}
@foreach (var item in myList)
{
  @(i++;)
}

Comments

Submit
0 Comments