在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