IMap<K,V>.HasKey(K) Method

Definition

Determines whether the map contains the specified key.

public:
 bool HasKey(K key);
bool HasKey(K const& key);
public bool HasKey(K key);
Public Function HasKey (key As K) As Boolean

Parameters

key
K

The key associated with the item to locate.

Returns

Boolean

bool

True if the key is found; otherwise, false.

Remarks

When programming with .NET, this interface is hidden and developers should use the System.Collections.Generic.IDictionary<TKey,TValue> interface.

Applies to

See also