當前位置:首頁 > 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/

開通會員,享受整站包年服務立即開通 >