在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