在C#中,可以使用HashSet
using System;
using System.Collections.Generic;
class Program
{
static void Main()
{
// 創建一個包含重復元素的List
List<int> listWithDuplicates = new List<int> { 1, 2, 3, 4, 4, 5, 6, 6, 7, 8, 9, 9 };
// 使用HashSet去重
HashSet<int> set = new HashSet<int>(listWithDuplicates);
// 將HashSet轉換為List并輸出結果
List<int> uniqueList = new List<int>(set);
Console.WriteLine("Unique elements:");
foreach (int item in uniqueList)
{
Console.WriteLine(item);
}
}
}
在這個示例中,我們首先創建了一個包含重復元素的List