c# keyvaluepair怎樣存儲(chǔ)

c#
小樊
81
2024-11-20 06:30:08
欄目: 云計(jì)算

在C#中,您可以使用KeyValuePair<TKey, TValue>結(jié)構(gòu)來存儲(chǔ)鍵值對(duì)。這個(gè)結(jié)構(gòu)是泛型的,所以您需要指定鍵和值的類型。以下是一個(gè)簡(jiǎn)單的示例:

using System;
using System.Collections.Generic;

class Program
{
    static void Main()
    {
        // 創(chuàng)建一個(gè)Dictionary<string, int>,它是一個(gè)鍵值對(duì)的集合
        Dictionary<string, int> myDictionary = new Dictionary<string, int>();

        // 添加鍵值對(duì)到字典中
        myDictionary.Add("apple", 5);
        myDictionary.Add("banana", 8);
        myDictionary.Add("orange", 10);

        // 訪問字典中的值
        Console.WriteLine("Value of 'apple': " + myDictionary["apple"]);

        // 更新字典中的值
        myDictionary["apple"] = 6;
        Console.WriteLine("Updated value of 'apple': " + myDictionary["apple"]);

        // 刪除字典中的鍵值對(duì)
        myDictionary.Remove("banana");

        // 檢查字典中是否存在某個(gè)鍵
        if (myDictionary.ContainsKey("banana"))
        {
            Console.WriteLine("Key 'banana' exists.");
        }
        else
        {
            Console.WriteLine("Key 'banana' does not exist.");
        }
    }
}

在這個(gè)示例中,我們創(chuàng)建了一個(gè)Dictionary<string, int>,然后向其中添加了三個(gè)鍵值對(duì)。我們還展示了如何訪問、更新和刪除字典中的鍵值對(duì),以及如何檢查字典中是否存在某個(gè)鍵。

0