在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 };
// 計算差集
var difference = set1.Except(set2).ToList();
// 輸出結果
Console.WriteLine("差集:");
foreach (var item in difference)
{
Console.WriteLine(item);
}
}
}
在這個示例中,我們創建了兩個整數列表set1
和set2
。然后,我們使用LINQ的Except
方法計算這兩個集合的差集,并將結果存儲在difference
變量中。最后,我們遍歷并輸出差集中的每個元素。