91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

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
凭祥市| 耿马| 张北县| 宁陵县| 莫力| 民县| 崇左市| 阿拉善右旗| 买车| 丰台区| 阳高县| 卢龙县| 承德市| 鹤庆县| 达孜县| 逊克县| 汾西县| 改则县| 乌兰察布市| 襄垣县| 东兰县| 博客| 江西省| 习水县| 鹿泉市| 石屏县| 本溪市| 遂昌县| 西昌市| 囊谦县| 崇文区| 磐石市| 三原县| 贵阳市| 河南省| 龙山县| 砚山县| 罗田县| 驻马店市| 丽江市| 九龙坡区|