반응형 Set1 C# List에서 HashSet으로 변환하기 List에서 HashSet으로 변환하기 1. HashSet 생성자 사용하기 HashSet은 유일한 요소들만을 포함한다. 리스트 안에 포함된 중복된 요소들은 버려진다. using System; using System.Collections.Generic; public class Example { public static void Main() { List list = new List { 1, 3, 3, 2, 4 }; HashSet set = new HashSet(list); Console.WriteLine(String.Join(",", set)); } } /* Output: 1,3,2,4 */ 2. Enumerable.ToHashSet() 메소드 (System.Linq) HashSet를 만들기 위해서 ToHa.. 2023. 6. 15. 이전 1 다음