2
我需要從IEnumerable @model訪問特定的項目;訪問/訪問MVC中的IEnumerable對象中的特定索引
我知道我可以通過下面的代碼到達所有項:
@foreach (var item in Model) {
<tr>
<td>
@Html.DisplayFor(modelItem => item.FoodName)
</td>
}
但我需要通過執行這樣的財產以後訪問所述第三項目(作爲例子): 模型[3] .FoodName
是否有任何方式從MVC中的IEnumerable對象到達特定的索引項?
請參閱http://stackoverflow.com/questions/5326874/why-would-i-use-enumerable-elementat-versus-the-operator –