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

DictionaryExtensions.GetValueOrAdd<TKey,TValue> 方法

定义

获取或添加与指定键关联的值。

public static TValue GetValueOrAdd<TKey,TValue> (this System.Collections.Generic.IDictionary<TKey,TValue> dictionary, TKey key, Func<TKey,TValue> valueProvider);
static member GetValueOrAdd : System.Collections.Generic.IDictionary<'Key, 'Value> * 'Key * Func<'Key, 'Value> -> 'Value
<Extension()>
Public Function GetValueOrAdd(Of TKey, TValue) (dictionary As IDictionary(Of TKey, TValue), key As TKey, valueProvider As Func(Of TKey, TValue)) As TValue

类型参数

TKey

键参数的类型。

TValue

值参数的类型。

参数

dictionary
IDictionary<TKey,TValue>

包含指定键的字典。

key
TKey

要获取其值的键。

valueProvider
Func<TKey,TValue>

值提供程序函数。

返回

TValue

如果找到指定键,则为与指定键关联的值;否则,它会从值提供程序函数中检索值,将其添加到字典中并返回 。

适用于