在C#中,set是一种集合数据结构,用来存储一组唯一的元素。set不允许重复的元素存在,每个元素都是唯一的。
在C#中,可以使用HashSet
以下是使用HashSet
using System;
using System.Collections.Generic;
class Program
{
static void Main()
{
HashSet<int> set = new HashSet<int>();
// 向set集合中添加元素
set.Add(1);
set.Add(2);
set.Add(3);
// 删除元素
set.Remove(2);
// 检查元素是否存在
if (set.Contains(1))
{
Console.WriteLine("Element 1 exists in the set.");
}
// 遍历set集合中的元素
foreach (int element in set)
{
Console.WriteLine(element);
}
}
}
通过使用HashSet