共用方式為


ConcurrentDictionary<TKey,TValue>.AlternateLookup<TAlternateKey>.TryGetValue 方法

定義

多載

TryGetValue(TAlternateKey, TValue)

取得與指定替代索引鍵相關聯的值。

TryGetValue(TAlternateKey, TKey, TValue)

取得與指定替代索引鍵相關聯的值。

TryGetValue(TAlternateKey, TValue)

取得與指定替代索引鍵相關聯的值。

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

適用於

TryGetValue(TAlternateKey, TKey, TValue)

取得與指定替代索引鍵相關聯的值。

public:
 bool TryGetValue(TAlternateKey key, [Runtime::InteropServices::Out] TKey % actualKey, [Runtime::InteropServices::Out] TValue % value);
public bool TryGetValue (TAlternateKey key, out TKey actualKey, out TValue value);
member this.TryGetValue : 'AlternateKey * 'Key * 'Value -> bool
Public Function TryGetValue (key As TAlternateKey, ByRef actualKey As TKey, ByRef value As TValue) As Boolean

參數

key
TAlternateKey

要取得之值的替代索引鍵。

actualKey
TKey

當這個方法傳回時,如果找到索引鍵,則包含與替代索引鍵相關聯的實際索引鍵;

否則,索引鍵參數類型的預設值。

value
TValue

當這個方法傳回時,如果找到索引鍵,則包含與指定索引鍵相關聯的值;

否則,value 參數類型的預設值。

傳回

例外狀況

key null

適用於