Enumerable

Study/C#, Winform

[C#] Enumerable 에서 중복 데이터 삭제 (Distinct)

C#에서 Enumerable 형식의 데이터에서 중복을 없앨 때는 Distinct를 사용합니다. public static System.Collections.Generic.IEnumerable Distinct (this System.Collections.Generic.IEnumerable source); 원형은 위와 같습니다. 이것을 사용해보겠습니다. List list = new List { 1, 2, 3, 4, 4, 4, 5, 6 }; list.Distinct().ToList().ForEach(num => { System.Console.Write($"{num} "); }); System.Console.WriteLine(); double[] dArr = new double[] { 1.2, 3.3, 3.3, ..

Eskeptor
'Enumerable' 태그의 글 목록