C# 中的集合是 HashSet。 C# 中的 HashSet 消除了数组中的重复字符串或元素。在C#中,它是一个优化的集合集合
声明HashSet -
var h = new HashSet<string>(arr1);
上面,我们已经在 HashSet 中设置了已经声明的数组 arr1。
现在将其设置在数组上以删除重复的单词 -
string[] arr2 = h.ToArray();
让我们看一个使用 C# HashSet 删除重复字符串的示例。
这里,我们有重复的元素 -
using System; using System.Collections.Generic; using System.Linq; class Program { static void Main() { string[] arr1 = {"Table","Chair","Pen","Clip","Table"}; Console.WriteLine(string.Join(",", arr1)); // HashSet var h = new HashSet<string>(arr1); // eliminates duplicate words string[] arr2 = h.ToArray(); Console.WriteLine(string.Join(",", arr2)); } }
以上是C# 中的集合的详细内容。更多信息请关注PHP中文网其他相关文章!