HashSet是C#中的C# Set集合,它有什么作用?
C# 中的 HashSet 会消除数组中的重复字符串或元素。在 C# 中,它是经过优化的集合。
下面我们通过一个示例,演示如何使用 C# HashSet 来消除重复字符串 −
示例
using System; using System.Collections.Generic; using System.Linq; class Program { static void Main() { string[] arr1 = { "one", "two", "two", "one", "three" }; Console.WriteLine(string.Join(",", arr1)); // HashSet var h = new HashSet(arr1); // eliminates duplicate words string[] arr2 = h.ToArray(); Console.WriteLine(string.Join(",", arr2)); } }
声明 HashSet。
var h = new HashSet<string7gt;(arr1);
现在将其设置在数组上,以消除重复单词 −
string[] arr2 = h.ToArray();
广告