溫馨提示×

C#中如何用Intersect求兩個對象列表的交集

c#
小億
174
2024-04-02 14:11:02
欄目: 編程語言

在C#中,可以使用LINQ的Intersect方法來求兩個對象列表的交集。以下是一個示例代碼:

using System;
using System.Collections.Generic;
using System.Linq;

class Program
{
    static void Main()
    {
        List<int> list1 = new List<int> { 1, 2, 3, 4, 5 };
        List<int> list2 = new List<int> { 3, 4, 5, 6, 7 };

        var intersect = list1.Intersect(list2);

        foreach (var item in intersect)
        {
            Console.WriteLine(item);
        }
    }
}

上面的示例代碼中,通過調(diào)用list1的Intersect方法并傳入list2作為參數(shù),就可以得到兩個列表的交集。最后,利用foreach循環(huán)打印出交集元素。

0