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