当前位置:首页 > IT技术 > Windows编程 > 正文

C# list去重合并查找
2022-04-19 11:25:37

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>();

 

本文摘自 :https://www.cnblogs.com/

开通会员,享受整站包年服务立即开通 >