TryGetValue
是 C# 中的一個方法,用于嘗試從字典(Dictionary)中獲取指定鍵的值。它不能直接擴展,但你可以通過擴展方法的方式為其添加新功能。
以下是一個簡單的示例,展示了如何為 TryGetValue
創建一個擴展方法:
using System;
using System.Collections.Generic;
public static class DictionaryExtensions
{
public static bool TryGetValue<TKey, TValue>(this IDictionary<TKey, TValue> dictionary, TKey key, out TValue value)
{
return dictionary.TryGetValue(key, out value);
}
}
現在你可以像這樣使用擴展方法:
var myDictionary = new Dictionary<string, int>
{
{ "apple", 1 },
{ "banana", 2 },
{ "orange", 3 }
};
int value;
if (myDictionary.TryGetValue("banana", out value))
{
Console.WriteLine($"The value for 'banana' is {value}.");
}
else
{
Console.WriteLine("The key 'banana' was not found.");
}
這個擴展方法并沒有改變 TryGetValue
的原始行為,但它為你提供了一個更簡潔的語法來使用這個方法。