1
2
3
4
5
6
7
8
List<Test> result = new List<Test>();
 
//합치기
result.AddRange(list1);
result.AddRange(list2);
 
//중복 제거
result = result.Distinct().ToList();
cs



블로그 이미지

stuban

ㅇ.ㅇ

,