C# 中的 Intersect
方法用于獲取兩個集合的交集。這個方法是相對容易使用的,只需要調用集合的 Intersect
方法即可。下面是一個簡單的示例:
using System;
using System.Collections.Generic;
class Program
{
static void Main()
{
// 創建兩個集合
List<int> list1 = new List<int> { 1, 2, 3, 4, 5 };
List<int> list2 = new List<int> { 4, 5, 6, 7, 8 };
// 獲取交集
List<int> intersection = list1.Intersect(list2).ToList();
// 輸出交集
Console.WriteLine("Intersection: " + string.Join(", ", intersection));
}
}
輸出結果:
Intersection: 4, 5
在這個示例中,我們創建了兩個整數列表 list1
和 list2
,然后使用 Intersect
方法獲取它們的交集,并將結果存儲在 intersection
列表中。最后,我們輸出交集的結果。
需要注意的是,Intersect
方法返回的是一個 IEnumerable<T>
類型的結果,因此我們需要將其轉換為列表或其他集合類型以便于處理。