12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
ADADADADAD
编程知识 时间:2024-12-04 17:03:15
作者:文/会员上传
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
在C#中,可以使用LINQ的Intersect方法来处理嵌套集合的交集问题。下面是一个示例代码:using System;using System.Collections.Generic;using System.Linq;class Program{stati
以下为本文的正文内容,内容仅供参考!本站为公益性网站,复制本文以及下载DOC文档全部免费。
在C#中,可以使用LINQ的Intersect方法来处理嵌套集合的交集问题。下面是一个示例代码:
using System;using System.Collections.Generic;using System.Linq;class Program{static void Main(){List<List<int>> nestedList1 = new List<List<int>>{new List<int> {1, 2, 3},new List<int> {2, 3, 4},new List<int> {3, 4, 5}};List<List<int>> nestedList2 = new List<List<int>>{new List<int> {2, 3, 4},new List<int> {3, 4, 5},new List<int> {4, 5, 6}};var intersection = nestedList1.SelectMany(x => x).Intersect(nestedList2.SelectMany(y => y)).ToList();foreach (var item in intersection){Console.WriteLine(item);}}}
在这个示例中,我们有两个嵌套的List<List
11-20
11-19
11-20
11-20
11-20
11-19
11-20
11-20
11-19
11-20
11-19
11-19
11-19
11-19
11-19
11-19