コード例 #1
0
ファイル: Dictionary.cs プロジェクト: zendbit/Bridge
 public static TValue GetValueOrDefault <TKey, TValue>(this IReadOnlyDictionary <TKey, TValue> dictionary, TKey key)
 {
     return(dictionary.GetValueOrDefault(key, default(TValue)));
 }