阅读量:0
在LINQ中,可以使用Intersect
方法来求两个对象列表的交集。示例如下:
List<int> list1 = new List<int>() { 1, 2, 3, 4, 5 }; List<int> list2 = new List<int>() { 3, 4, 5, 6, 7 }; var intersectList = list1.Intersect(list2).ToList(); foreach(var item in intersectList) { Console.WriteLine(item); }
在上面的示例中,Intersect
方法会返回list1
和list2
中相同的元素,即交集。最终输出结果为:
3 4 5