次の方法で共有


DictionaryExtensions.TryRemove<TKey,TValue> メソッド

定義

指定したキーに関連付けられている値を削除します。

public static bool TryRemove<TKey,TValue> (this System.Collections.Generic.Dictionary<TKey,TValue> dictionary, TKey key, out TValue value);
static member TryRemove : System.Collections.Generic.Dictionary<'Key, 'Value> * 'Key * 'Value -> bool
<Extension()>
Public Function TryRemove(Of TKey, TValue) (dictionary As Dictionary(Of TKey, TValue), key As TKey, ByRef value As TValue) As Boolean

型パラメーター

TKey

キー パラメーターの型。

TValue

value パラメーターの型。

パラメーター

dictionary
Dictionary<TKey,TValue>

指定したキーを含むディクショナリ。

key
TKey

値を取得する対象のキー。

value
TValue

キーが見つかった場合は、指定したキーに関連付けられている値。それ以外の場合は、value パラメーターの型の既定値。

戻り値

True を指定したキーを持つ要素がディクショナリに含まれている場合。それ以外の場合は false。

適用対象