C# 中的 Intersect
方法主要用于求兩個集合的交集。這個方法可以用于多種場景,例如:
Intersect
方法。Intersect
可以與其他集合操作結合使用,以實現更復雜的數據篩選邏輯。Intersect
是一個非常有用的操作符,用于找出兩個序列中共同的元素。Intersect
可以幫助你實現這一點。Intersect
可以比使用其他方法(如 List.Contains
)更高效,尤其是在處理大型集合時。下面是一個簡單的示例,展示了如何使用 Intersect
方法:
using System;
using System.Collections.Generic;
class Program
{
static void Main()
{
// 創建兩個集合
List<int> set1 = new List<int> { 1, 2, 3, 4, 5 };
List<int> set2 = new List<int> { 4, 5, 6, 7, 8 };
// 求交集
var intersection = set1.Intersect(set2);
// 輸出結果
Console.WriteLine("Intersection: " + string.Join(", ", intersection));
}
}
在這個示例中,set1
和 set2
的交集是 { 4, 5 }
,因此程序將輸出 “Intersection: 4, 5”。