TryGetValue
是用于在 C# 中檢索 Dictionary
或 Hashtable
中的元素的方法。它將嘗試獲取與指定鍵關聯的值,并返回一個布爾值,指示是否成功找到該鍵。如果成功找到,則該方法將返回與鍵關聯的值,并將其存儲在一個輸出參數中,否則返回默認值。
示例代碼如下:
Dictionary<string, int> dict = new Dictionary<string, int>();
dict["key1"] = 1;
dict["key2"] = 2;
int value;
if (dict.TryGetValue("key1", out value))
{
Console.WriteLine("The value associated with key1 is: " + value);
}
else
{
Console.WriteLine("Key1 not found in the dictionary");
}
if (dict.TryGetValue("key3", out value))
{
Console.WriteLine("The value associated with key3 is: " + value);
}
else
{
Console.WriteLine("Key3 not found in the dictionary");
}
在上面的示例中,TryGetValue
方法用于檢索字典中兩個鍵的值,并根據結果輸出相應的消息。