在C#中,可以使用LINQ的Intersect
方法來獲取兩個集合的交集。Intersect
方法接受一個IEnumerable
類型的參數,返回一個包含兩個集合交集的新集合。
示例代碼如下:
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 num in intersect)
{
Console.WriteLine(num);
}
}
}
以上代碼會輸出交集結果3, 4, 5
。