list2 C# List Sort()를 사용해서 정렬하기 C# List Sort()로 정렬해 보자 Comparison 객체로 정렬 무명 메서드로 정렬 람다로 정렬 번외 - OrderBy(), OrderByDescending() 함수로 정렬 Comparison 객체를 이용하여 정렬하기 구글에서 가볍게 검색했을 때 나왔던 방식은 Comparison을 사용하는 방법이다. 하지만 뭔가 가독성이 떨어지는 느낌이다. public class Program { static void Main(string[] args) { int start = 10; int end = 3; List list = new List(); for (int i = end; i x); (newList로 반환받아서 사용해야 함.) public class Program { static void Main(st.. 2023. 11. 23. 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 다음