在C#中,可以使用foreach循环来遍历HashSet集合。以下是一个示例:
using System;
using System.Collections.Generic;
class Program
{
static void Main()
{
// 创建一个HashSet集合
HashSet<int> myHashSet = new HashSet<int> { 1, 2, 3, 4, 5 };
// 使用foreach循环遍历HashSet集合
foreach (int item in myHashSet)
{
Console.WriteLine(item);
}
}
}
在这个示例中,我们首先创建了一个包含整数的HashSet集合myHashSet
。然后,我们使用foreach循环遍历集合中的每个元素,并将其输出到控制台。