你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

DictionaryExtensions.GetValueOrDefault<TKey,TValue> 方法

定义

获取与指定键关联的值。

public static TValue GetValueOrDefault<TKey,TValue> (this System.Collections.Generic.IDictionary<TKey,TValue> dictionary, TKey key, TValue defaultValue = default);
static member GetValueOrDefault : System.Collections.Generic.IDictionary<'Key, 'Value> * 'Key * 'Value -> 'Value
<Extension()>
Public Function GetValueOrDefault(Of TKey, TValue) (dictionary As IDictionary(Of TKey, TValue), key As TKey, Optional defaultValue As TValue = Nothing) As TValue

类型参数

TKey

键参数的类型。

TValue

值参数的类型。

参数

dictionary
IDictionary<TKey,TValue>

包含指定键的字典。

key
TKey

要获取其值的键。

defaultValue
TValue

值参数类型的默认值。

返回

TValue

如果找到指定键,则为与指定键关联的值;否则为值参数类型的默认值。

适用于