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

溫馨提示×

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
上犹县| 潜江市| 东至县| 肃宁县| 延吉市| 宕昌县| 理塘县| 扎鲁特旗| 鲁甸县| 渑池县| 五河县| 宜君县| 华阴市| 中阳县| 濮阳市| 伊吾县| 昔阳县| 民权县| 那坡县| 岑巩县| 连山| 抚松县| 阿拉善右旗| 武山县| 乌海市| 景谷| 循化| 新沂市| 宜兴市| 正镶白旗| 宣汉县| 原阳县| 牡丹江市| 阿合奇县| 巴中市| 宝丰县| 镇沅| 南昌市| 宜兰市| 靖西县| 峨边|