ASP.NET Razor C# 循環和數組
asp.net razor - c# 循環和數組
語句在循環中會被重復執行。
for 循環
如果您需要重復執行相同的語句,您可以設定一個循環。
如果您知道要循環的次數,您可以使用 for 循環。這種類型的循環在向上計數或向下計數時特別有用:
實例
<html>
<body>
@for(var i = 10; i < 21; i++)
{<p>line @i</p>}
</body>
</html>
<body>
@for(var i = 10; i < 21; i++)
{<p>line @i</p>}
</body>
</html>
for each 循環
如果您使用的是集合或者數組,您會經常用到 for each 循環。
集合是一組相似的對象,for each 循環可以遍歷集合直到完成。
下面的實例中,遍歷 asp.net request.servervariables 集合。
實例
<html>
<body>
<ul>
@foreach (var x in request.servervariables)
{<li>@x</li>}
</ul>
</body>
</html>
<body>
<ul>
@foreach (var x in request.servervariables)
{<li>@x</li>}
</ul>
</body>
</html>
while 循環
while 循環是一個通用的循環。
while 循環以 while 關鍵字開始,后面緊跟著括號,您可以在括號里規定循環將持續多久,然后是重復執行的代碼塊。
while 循環通常會設定一個遞增或者遞減的變量用來計數。
下面的實例中,+= 運算符在每執行一次循環時給變量 i 的值加 1。
實例
<html>
<body>
@{
var i = 0;
while (i < 5)
{
i += 1;
<p>line @i</p>
}
}
</body>
</html>
<body>
@{
var i = 0;
while (i < 5)
{
i += 1;
<p>line @i</p>
}
}
</body>
</html>
數組
當您要存儲多個相似變量但又不想為每個變量都創建一個獨立的變量時,可以使用數組來存儲:
實例
@{
string[] members = {"jani", "hege", "kai", "jim"};
int i = array.indexof(members, "kai")+1;
int len = members.length;
string x = members[2-1];
}
<html>
<body>
<h3>members</h3>
@foreach (var person in members)
{
<p>@person</p>
}
<p>the number of names in members are @len</p>
<p>the person at position 2 is @x</p>
<p>kai is now in position @i</p>
</body>
</html>
string[] members = {"jani", "hege", "kai", "jim"};
int i = array.indexof(members, "kai")+1;
int len = members.length;
string x = members[2-1];
}
<html>
<body>
<h3>members</h3>
@foreach (var person in members)
{
<p>@person</p>
}
<p>the number of names in members are @len</p>
<p>the person at position 2 is @x</p>
<p>kai is now in position @i</p>
</body>
</html>