在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."。