두개의 List를 간단하게 중복 제거 하는 방법
------------------------------------------------
// 중복 제거
List<String> lDownloadList_v1 = new List<String>();
List<String> lDownloadList_v2 = new List<String>();
lDownloadList_v1.Concat(lDownloadList_v2).Distinct(); -> 잘 안되는것같음(X)
lDownloadList_v1 = lDownloadList_v1 .Except(lDownloadList_v2 ).ToList(); -> 아주 잘 됨(O)
------------------------------------------------
'프로그래밍 > C#' 카테고리의 다른 글
C# Regex Tester (0) | 2015.02.25 |
---|---|
C# String Array 에서 Item 삭제(remove) 하기 (0) | 2014.08.27 |
C# SqlDataReader 로 RowCount 가져오는 방법 (0) | 2014.07.14 |
C# Country code (2자리) 인지 체크 하는 방법 (0) | 2014.05.29 |
C# Regex (Regular Expression) Class (0) | 2014.05.14 |