Click or drag to resize
ReadOnlyDictionaryBaseTKey, TValueTryGetValue Method
Determines if this dictionary contains a key equal to key. If so, the value associated with that key is returned through the value parameter. This method must be overridden in the derived class.

Namespace: X3Platform.Collections
Assembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntax
public abstract bool TryGetValue(
	TKey key,
	out TValue value
)

Parameters

key
Type: TKey
The key to search for.
value
Type: TValue
Returns the value associated with key, if true was returned.

Return Value

Type: Boolean
True if the dictionary contains key. False if the dictionary does not contain key.

Implements

IDictionaryTKey, TValueTryGetValue(TKey, TValue)
See Also