在C#中,可以使用HashSet
using System;
using System.Collections.Generic;
class Program
{
static void Main()
{
// 創(chuàng)建一個(gè)包含重復(fù)元素的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轉(zhuǎn)換為L(zhǎng)ist并輸出結(jié)果
List<int> uniqueList = new List<int>(set);
Console.WriteLine("Unique elements:");
foreach (int item in uniqueList)
{
Console.WriteLine(item);
}
}
}
在這個(gè)示例中,我們首先創(chuàng)建了一個(gè)包含重復(fù)元素的List