ReadOnlyDictionaryBaseTKey, TValueTryGetValue Method

CVB.Net Documentation
Retrieves the value that is associated with the specific key.

Namespace:  Stemmer.Cvb.Collections.Generic
Assembly:  Stemmer.Cvb (in Stemmer.Cvb.dll) Version: 14.0.0.0
Syntax

public virtual bool TryGetValue(
	TKey key,
	out TValue value
)

Parameters

key
Type: TKey
Key whose value will be retrieved.
value
Type: TValue
Variable to be assigned with the object of the specified key, if the key is found. Otherwise the default value of TValue is assigned.

Return Value

Type: Boolean
true if this collection contains the specified key; false otherwise.

Implements

IDictionaryTKey, TValueTryGetValue(TKey, TValue)
See Also

Reference