中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
德兴市| 磐安县| 开鲁县| 衡阳县| 铜梁县| 七台河市| 准格尔旗| 玉田县| 濉溪县| 高要市| 普兰店市| 南澳县| 镇康县| 麻阳| 彩票| 卢湾区| 仁化县| 闽侯县| 珠海市| 盐亭县| 乐山市| 桑植县| 蒙城县| 大连市| 凤山市| 遵义县| 宁明县| 额济纳旗| 涞水县| 长海县| 丰台区| 邻水| 土默特右旗| 犍为县| 宁武县| 莆田市| 黔西| 桂阳县| 枣强县| 盐源县| 清河县|