ReadOnlyDictionary<TKey, TValue>::TryGetValue Method (TKey, TValue%)

.NET Framework (current version)
 

Retrieves the value that is associated with the specified key.

Namespace:   System.Collections.ObjectModel
Assembly:  mscorlib (in mscorlib.dll)

public:
virtual bool TryGetValue(
	TKey key,
	[OutAttribute] TValue% value
) sealed

Parameters

key
Type: TKey

The key whose value will be retrieved.

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: System::Boolean

true if the object that implements ReadOnlyDictionary<TKey, TValue> contains an element with the specified key; otherwise, false.

Universal Windows Platform
Available since 8
.NET Framework
Available since 4.5
Portable Class Library
Supported in: portable .NET platforms
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
Return to top
Show: