C# 实例 For 循环

c# 实例

for 循环

<html>
<body>
@for(var i = 10; i < 21; i++)
{
<p>line @i</p>
}

</body>
</html>

相关文章