CollectionExtensions.TryAdd<TKey,TValue> メソッド

定義

指定した keyvaluedictionary に追加しようとします。

public:
generic <typename TKey, typename TValue>
[System::Runtime::CompilerServices::Extension]
 static bool TryAdd(System::Collections::Generic::IDictionary<TKey, TValue> ^ dictionary, TKey key, TValue value);
public static bool TryAdd<TKey,TValue> (this System.Collections.Generic.IDictionary<TKey,TValue> dictionary, TKey key, TValue value);
static member TryAdd : System.Collections.Generic.IDictionary<'Key, 'Value> * 'Key * 'Value -> bool
<Extension()>
Public Function TryAdd(Of TKey, TValue) (dictionary As IDictionary(Of TKey, TValue), key As TKey, value As TValue) As Boolean

型パラメーター

TKey

ディクショナリ内のキーの型。

TValue

ディクショナリ内の値の型。

パラメーター

dictionary
IDictionary<TKey,TValue>

TKey 型のキーと TValue 型の値を含むディクショナリ。

key
TKey

追加する値のキー。

value
TValue

加算する値。

戻り値

keyvaluedictionary に正常に追加された場合は、truedictionary に指定した key が既に含まれている場合は false (この場合、何も追加されません)。

例外

dictionarynullです。

適用対象