在C#中,可以使用foreach循环来遍历List集合。以下是一个示例:
using System;
using System.Collections.Generic;
class Program
{
static void Main()
{
List<int> numbers = new List<int> { 1, 2, 3, 4, 5 };
foreach (int number in numbers)
{
Console.WriteLine(number);
}
}
}
在上面的示例中,我们首先创建了一个包含整数的List集合。然后,我们使用foreach循环遍历该列表,并打印每个元素的值。运行程序后,输出将是:
1
2
3
4
5