温馨提示×

c# hashset如何遍历集合

c#
小樊
82
2024-11-15 22:33:12
栏目: 编程语言

在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);
        }
    }
}

在这个示例中,我们首先导入了SystemSystem.Collections.Generic命名空间。然后,我们创建了一个名为myHashSet的HashSet集合,其中包含一些整数。接下来,我们使用foreach循环遍历集合中的每个元素,并将其输出到控制台。

0