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

溫馨提示×

c# trygetvalue 如何用

c#
小樊
81
2024-11-23 09:07:15
欄目: 編程語言

在C#中,TryGetValue是一個字典(Dictionary)類的方法,用于嘗試獲取指定鍵的值。如果鍵存在,則返回該值;否則返回默認值。以下是如何使用TryGetValue的示例:

using System;
using System.Collections.Generic;

class Program
{
    static void Main()
    {
        // 創建一個字典
        Dictionary<string, int> myDictionary = new Dictionary<string, int>
        {
            {"apple", 1},
            {"banana", 2},
            {"orange", 3}
        };

        // 嘗試獲取鍵為 "apple" 的值
        int value;
        if (myDictionary.TryGetValue("apple", out value))
        {
            Console.WriteLine($"The value of 'apple' is: {value}");
        }
        else
        {
            Console.WriteLine("The key 'apple' does not exist in the dictionary.");
        }

        // 嘗試獲取不存在的鍵 "grape" 的值
        if (myDictionary.TryGetValue("grape", out value))
        {
            Console.WriteLine($"The value of 'grape' is: {value}");
        }
        else
        {
            Console.WriteLine("The key 'grape' does not exist in the dictionary.");
        }
    }
}

在這個示例中,我們首先創建了一個包含三個鍵值對的字典。然后,我們使用TryGetValue方法嘗試獲取鍵為 “apple” 的值。如果鍵存在,我們將輸出該值;否則,我們將輸出一個消息表示鍵不存在。接下來,我們嘗試獲取不存在的鍵 “grape” 的值,并輸出相應的消息。

0
承德市| 小金县| 呼图壁县| 岳阳县| 台中市| 乌拉特中旗| 公安县| 紫金县| 郧西县| 滁州市| 维西| 屏边| 南木林县| 德阳市| 南昌市| 岐山县| 安仁县| 容城县| 彭州市| 临江市| 万州区| 成安县| 清流县| 清新县| 巴中市| 祥云县| 静海县| 阿巴嘎旗| 哈尔滨市| 平陆县| 鄂托克旗| 巴林右旗| 洪洞县| 鄯善县| 麟游县| 景谷| 兴义市| 英德市| 灌云县| 奈曼旗| 花莲市|