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

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

值参数的类型。

参数

dictionary
Dictionary<TKey,TValue>

包含指定键的字典。

key
TKey

要获取其值的键。

value
TValue

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

返回

如此 如果字典包含具有指定键的元素;否则为 false。

适用于