亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

c# set集合如何去重元素

c#
小樊
81
2024-11-16 15:31:45
欄目: 編程語言

在C#中,可以使用HashSet類來存儲不重復的元素。HashSet是基于哈希表實現的,因此它會自動去除重復元素。以下是如何使用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。然后,我們使用HashSet來存儲這些元素,HashSet會自動去除重復元素。最后,我們將HashSet轉換為List并輸出結果。

0
楚雄市| 仲巴县| 雅安市| 屏东市| 铜川市| 通江县| 德保县| 沙坪坝区| 云和县| 上蔡县| 贵港市| 罗田县| 宁波市| 洛浦县| 资中县| 花莲市| 安平县| 平度市| 大埔县| 曲松县| 岳普湖县| 江阴市| 乳山市| 新化县| 岚皋县| 札达县| 新龙县| 琼结县| 邵阳市| 黑水县| 新昌县| 侯马市| 新乐市| 夹江县| 余江县| 集安市| 吉木乃县| 镇巴县| 黄山市| 吉木萨尔县| 文水县|