在C#中,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 };
var intersection = list1.Intersect(list2);
Console.WriteLine("Intersection: ");
foreach (var item in intersection)
{
Console.WriteLine(item);
}
}
}
在這個示例中,我們創建了兩個整數列表list1
和list2
,然后使用Intersect
方法找到它們的交集。最后,我們遍歷并輸出交集中的元素。
請注意,Intersect
方法返回一個新的集合,其中包含兩個輸入集合的公共元素。原始集合不會受到影響。