'Declaration
Function TryGetValue( _ ByVal equalValue As Object, _ ByRef actualValue As Object _ ) As Boolean
'Usage
Dim instance As _UAQualifiedNameSet Dim equalValue As Object Dim actualValue As Object Dim value As Boolean value = instance.TryGetValue(equalValue, actualValue)
bool TryGetValue( object equalValue, out object actualValue )
bool TryGetValue( Object^ equalValue, [Out] Object^ actualValue )
Parameters
- equalValue
- The value to search for.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - actualValue
- The value from the set that the search found, or the default value of T when the search yielded no match.
The value of this parameter can be
null
(Nothing
in Visual Basic).