溫馨提示×

c# hashset如何遍歷集合

c#
小樊
82
2024-11-15 22:33:12
欄目: 編程語言

在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)入了SystemSystem.Collections.Generic命名空間。然后,我們創(chuàng)建了一個名為myHashSet的HashSet集合,其中包含一些整數(shù)。接下來,我們使用foreach循環(huán)遍歷集合中的每個元素,并將其輸出到控制臺。

0