在C#中,TryGetValue方法是用于檢索字典中指定鍵的值的方法。它可以用來避免在檢索字典中不存在的鍵時引發異常。該方法返回一個bool值,指示是否找到了指定的鍵。如果找到了鍵,則該方法將返回true,并將該鍵對應的值存儲在傳入的參數中,如果未找到鍵,則返回false。
以下是TryGetValue方法的基本語法:
bool dictionary.TryGetValue(key, out value);
其中,dictionary是字典對象,key是要查找的鍵,value是查找到的鍵對應的值。
示例:
Dictionary<string, int> dict = new Dictionary<string, int>();
dict.Add("apple", 5);
int value;
if (dict.TryGetValue("apple", out value))
{
Console.WriteLine("The value of 'apple' is: " + value);
}
else
{
Console.WriteLine("Key 'apple' not found.");
}
在這個示例中,我們首先向字典中添加了一個鍵值對(“apple”, 5),然后使用TryGetValue方法嘗試檢索鍵為"apple"的值。如果找到了這個鍵,就會打印出對應的值;如果未找到,則會打印出"Key ‘apple’ not found."。