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

Definition

Removes an item from the map.

public:
 void Remove(K key);
void Remove(K const& key);
public void Remove(K key);
Public Sub Remove (key As K)

Parameters

key
K

The key associated with the item to remove.

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