ConcurrentDictionary<TKey,TValue>.TryGetValue(TKey, TValue) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
嘗試從 ConcurrentDictionary<TKey,TValue> 取得與指定之索引鍵相關聯的值。
public:
virtual bool TryGetValue(TKey key, [Runtime::InteropServices::Out] TValue % value);
public bool TryGetValue (TKey key, out TValue value);
abstract member TryGetValue : 'Key * 'Value -> bool
override this.TryGetValue : 'Key * 'Value -> bool
Public Function TryGetValue (key As TKey, ByRef value As TValue) As Boolean
參數
- key
- TKey
要取得之值的索引鍵。
- value
- TValue
當這個方法傳回時,會包含 ConcurrentDictionary<TKey,TValue> 中具有指定索引鍵的物件;如果作業失敗,則包含類型的預設值。
傳回
如果在 ConcurrentDictionary<TKey,TValue> 中找到索引鍵則為 true
,否則為 false
。
實作
例外狀況
key
為 null
。