C# list去重合并查找

1                     List<int> listA = new List<int> { 1, 2, 3, 5, 7, 9 };
2                     List<int> listB = new List<int> { 2,3,88 };
3                     //合并
4                     listA.AddRange(listB);
5                     //去重
6                     List<int> result = listA.Union(listB).ToList<int>();
7                     //不去重
8                     List<int> result = listA.Concat(listB).ToList<int>();

 

posted @ 2022-04-19 10:18  博二爷  阅读(190)  评论(0编辑  收藏  举报