在LINQ中交叉集合集合

时间:2010-03-28 05:30:26

标签: c# linq

我有一个我想要交叉的列表列表:

List<List<int>> input = new List<List<int>>();
input.Add(new List<int>() { 1, 2, 4, 5, 8 });
input.Add(new List<int>() { 3, 4, 5 });
input.Add(new List<int>() { 1, 4, 5, 6 });

输出应为:

{ 4, 5 }

如何以简洁的方式实现这一目标?

1 个答案:

答案 0 :(得分:16)

var result = input.Cast<IEnumerable<int>>().Aggregate((x, y) => x.Intersect(y))