AdvisableDictionary<TKey, TValue>.TryGetValue Method |
Namespace: PostSharp.Patterns.Collections
Assembly: PostSharp.Patterns.Common (in PostSharp.Patterns.Common.dll) Version: 6.8.6.0 (6.8.6.0)
public bool TryGetValue( TKey key, out TValue value )
Parameters
- key
- Type: TKey
The key whose value to get. - value
- Type: TValue
When this method returns, the value associated with the specified key, if the key is found; otherwise, the default value for the type of the value parameter. This parameter is passed uninitialized.
Return Value
Type: Booleantrue if the object that implements IDictionary<TKey, TValue> contains an element with the specified key; otherwise, false.
Implements
IDictionary<TKey, TValue>.TryGetValue(TKey, TValue)Exception | Condition |
---|---|
ArgumentNullException | key is null. |