在C#中,你可以使用LINQ(Language Integrated Query)來實現集合的交集操作。以下是一個簡單的示例:
using System;
using System.Collections.Generic;
using System.Linq;
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 };
// 使用LINQ實現交集操作
var intersection = set1.Intersect(set2);
// 輸出結果
Console.WriteLine("交集為:");
foreach (var item in intersection)
{
Console.Write(item + " ");
}
}
}
在這個示例中,我們創建了兩個整數列表set1
和set2
,然后使用Intersect
方法計算它們的交集。最后,我們遍歷并輸出交集中的元素。