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

キーが見つかった場合は、指定したキーに関連付けられている値。それ以外の場合は、値プロバイダー関数から値を取得し、ディクショナリに追加して を返します。

適用対象