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

溫馨提示×

c# sorteddictionary怎樣刪除

c#
小樊
81
2024-11-23 01:18:05
欄目: 編程語言

在C#中,SortedDictionary是一個有序字典,它根據鍵的順序存儲和排序元素。要刪除SortedDictionary中的元素,您可以使用Remove()方法。以下是一個示例:

using System;
using System.Collections.Generic;

class Program
{
    static void Main()
    {
        SortedDictionary<int, string> mySortedDictionary = new SortedDictionary<int, string>();

        // 添加元素到SortedDictionary
        mySortedDictionary.Add(3, "three");
        mySortedDictionary.Add(1, "one");
        mySortedDictionary.Add(2, "two");

        Console.WriteLine("Original SortedDictionary:");
        foreach (KeyValuePair<int, string> item in mySortedDictionary)
        {
            Console.WriteLine("{0}: {1}", item.Key, item.Value);
        }

        // 刪除SortedDictionary中的元素
        int keyToRemove = 2;
        if (mySortedDictionary.ContainsKey(keyToRemove))
        {
            mySortedDictionary.Remove(keyToRemove);
            Console.WriteLine($"Element with key {keyToRemove} removed.");
        }
        else
        {
            Console.WriteLine($"Element with key {keyToRemove} not found.");
        }

        Console.WriteLine("\nSortedDictionary after removal:");
        foreach (KeyValuePair<int, string> item in mySortedDictionary)
        {
            Console.WriteLine("{0}: {1}", item.Key, item.Value);
        }
    }
}

在這個示例中,我們首先創建了一個SortedDictionary,并添加了一些元素。然后,我們使用Remove()方法刪除了鍵為2的元素。最后,我們遍歷SortedDictionary并輸出其內容。

0
应城市| 九寨沟县| 双鸭山市| 财经| 柞水县| 博白县| 辽阳县| 彭阳县| 都匀市| 扶余县| 海盐县| 祥云县| 安达市| 金川县| 永年县| 霞浦县| 县级市| 庆安县| 武陟县| 西昌市| 苍溪县| 江孜县| 吴旗县| 天津市| 高雄市| 江口县| 祁阳县| 永兴县| 黄梅县| 河东区| 江川县| 东安县| 长阳| 夏津县| 讷河市| 华亭县| 深圳市| 五原县| 建水县| 伊春市| 和平县|