HashSet을 초기화합니다.
var h = new HashSet<string>(arr1);
위에서는 HashSet에 배열을 설정했습니다. 다음은 배열입니다. -
string[] arr1 = { "electronics", "accessories”, "electronics", };
다음 예에서는 C#에서 HashSet을 구현하는 방법을 보여줍니다. -
using System; using System.Collections.Generic; using System.Linq; class Program { static void Main() { string[] arr1 = { "electronics", "accessories”, "electronics", }; Console.WriteLine(string.Join(",", arr1)); // HashSet var h = new HashSet(arr1); // eliminates duplicate words string[] arr2 = h.ToArray(); Console.WriteLine(string.Join(",", arr2)); } }
위 내용은 C#에서 HashSet 초기화의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!