KeyedCollection<TKey,TItem>.TryGetValue(TKey, TItem) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
尝试使用指定的键从集合中获取项。
public:
bool TryGetValue(TKey key, [Runtime::InteropServices::Out] TItem % item);
public bool TryGetValue (TKey key, out TItem item);
member this.TryGetValue : 'Key * 'Item -> bool
Public Function TryGetValue (key As TKey, ByRef item As TItem) As Boolean
参数
- key
- TKey
要在集合中搜索的项的键。
- item
- TItem
如果此方法返回 true
,则为集合中与所提供的键相匹配的项;如果此方法返回 false
,则为集合类型的 default
值。
返回
如果在集合中找到了指定键的项,则为 true
;否则为 false
。
例外
key
为 null
。