C# 实例 For Each 循环

c# 实例

for each 循环

<html>
<body>
<ul>
@foreach (var x in request.servervariables)
    {<li>@x</li>}
</ul>
</body>
</html>

相关文章