Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Determines whether the dictionary contains the specified key.
Namespace: Microsoft.PerformancePoint.Scorecards
Assembly: Microsoft.PerformancePoint.Scorecards.Client (in Microsoft.PerformancePoint.Scorecards.Client.dll)
Syntax
'Declaration
Public Function ContainsKey ( _
key As TKey _
) As Boolean
'Usage
Dim instance As DictionaryWrapper
Dim key As TKey
Dim returnValue As Boolean
returnValue = instance.ContainsKey(key)
public bool ContainsKey(
TKey key
)
Parameters
key
Type: TKeyThe key to look up.
Return Value
Type: System.Boolean
true if the dictionary contains a value with the specified key; otherwise false.
See Also
Reference
DictionaryWrapper<TKey, TValue> Class