c#

c# set集合 如何删除元素

小樊
84
2024-12-04 04:13:42
栏目: 编程语言

在C#中,要从HashSet<T>集合中删除一个元素,可以使用Remove方法。这是一个示例:

using System;
using System.Collections.Generic;

class Program
{
    static void Main()
    {
        HashSet<int> mySet = new HashSet<int> { 1, 2, 3, 4, 5 };

        Console.WriteLine("Original HashSet:");
        foreach (int item in mySet)
        {
            Console.WriteLine(item);
        }

        int itemToRemove = 3;
        mySet.Remove(itemToRemove);

        Console.WriteLine($"HashSet after removing {itemToRemove}:");
        foreach (int item in mySet)
        {
            Console.WriteLine(item);
        }
    }
}

在这个示例中,我们首先创建了一个包含整数的HashSet<int>集合。然后,我们使用Remove方法删除元素3。最后,我们遍历集合并输出结果。

0
看了该问题的人还看了