C# 中的 Intersect
方法用于獲取兩個集合的交集。這個方法的實現并不復雜,它基于 LINQ (Language Integrated Query) 提供了簡潔的語法來處理集合操作。
以下是一個簡單的示例,展示了如何使用 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> { 4, 5, 6, 7, 8 };
var intersection = list1.Intersect(list2);
Console.WriteLine("Intersection:");
foreach (var item in intersection)
{
Console.WriteLine(item);
}
}
}
輸出:
Intersection:
4
5
在這個示例中,我們創建了兩個整數列表 list1
和 list2
,然后使用 Intersect
方法找到它們的交集。最后,我們遍歷交集并將結果輸出到控制臺。
總的來說,C# 中的 Intersect
方法并不復雜,它提供了一種簡潔的方式來處理集合的交集操作。