Namespace:  NHibernate.Collection.Generic
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Public Function TryGetValue ( _
	key As TKey, _
	<OutAttribute> ByRef value As TValue _
) As Boolean
C#
public bool TryGetValue(
	TKey key,
	out TValue value
)
Visual C++
public:
virtual bool TryGetValue(
	TKey key, 
	[OutAttribute] TValue% value
) sealed
JavaScript
function tryGetValue(key, value);

Parameters

key
Type: TKey
value
Type: TValue %

Implements

IDictionary<(Of <(TKey, TValue>)>)..::.TryGetValue(TKey, TValue%)

See Also