0
我有這樣的代碼在我看來VS不承認一個變量
@model IEnumerable<P.Models.A>
@{
ViewBag.Title = "Images";
}
<h2>Images</h2>
@int i = 0;
<table>
@foreach (var item in Model)
{
if(i % 3 == 0){
}
}
</table>
VS說,我認爲i
doesnot exist in the current context
什麼我做錯了嗎?
我試圖在i
之前添加@
,但仍然得到相同的錯誤。