ImmutableDictionary<TKey,TValue>.Builder.GetValueOrDefault 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
GetValueOrDefault(TKey, TValue) |
如果字典中存在相符的索引鍵,就會取得指定索引鍵的值。 |
GetValueOrDefault(TKey) |
如果字典中存在相符的索引鍵,就會取得指定索引鍵的值。 |
GetValueOrDefault(TKey, TValue)
如果字典中存在相符的索引鍵,就會取得指定索引鍵的值。
public:
TValue GetValueOrDefault(TKey key, TValue defaultValue);
public TValue GetValueOrDefault (TKey key, TValue defaultValue);
member this.GetValueOrDefault : 'Key * 'Value -> 'Value
Public Function GetValueOrDefault (key As TKey, defaultValue As TValue) As TValue
參數
- key
- TKey
要搜尋的索引鍵。
- defaultValue
- TValue
如果字典中找不到相符的索引鍵時所傳回的預設值。
傳回
TValue
索引鍵的值,或者,如果找不到相符的索引鍵,則為 defaultValue
。
適用於
GetValueOrDefault(TKey)
如果字典中存在相符的索引鍵,就會取得指定索引鍵的值。
public:
TValue GetValueOrDefault(TKey key);
public TValue GetValueOrDefault (TKey key);
public TValue? GetValueOrDefault (TKey key);
member this.GetValueOrDefault : 'Key -> 'Value
Public Function GetValueOrDefault (key As TKey) As TValue
參數
- key
- TKey
要搜尋的索引鍵。
傳回
TValue
索引鍵的值,或者,如果找不到相符的索引鍵,則為 default(TValue)
。