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