在C#中,要遍歷HashSet集合,可以使用foreach循環(huán)。以下是一個示例:
using System;
using System.Collections.Generic;
class Program
{
static void Main()
{
// 創(chuàng)建一個HashSet集合
HashSet<int> myHashSet = new HashSet<int> { 1, 2, 3, 4, 5 };
// 遍歷HashSet集合
foreach (int item in myHashSet)
{
Console.WriteLine(item);
}
}
}
在這個示例中,我們首先導(dǎo)入了System
和System.Collections.Generic
命名空間。然后,我們創(chuàng)建了一個名為myHashSet
的HashSet集合,其中包含一些整數(shù)。接下來,我們使用foreach循環(huán)遍歷集合中的每個元素,并將其輸出到控制臺。