在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
方法找到它們的交集。最后,我們將結果輸出到控制臺。
需要注意的是,Intersect
方法會返回一個新的集合,而不是修改原始集合。如果你想要修改原始集合,可以使用IntersectWith
方法。