[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Assembly: NEsper (in NEsper.dll)
Removes the element with the specified key from the IDictionary<(Of TKey, TValue>).
Namespace: net.esper.compat
Assembly: NEsper (in NEsper.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Function Remove ( _ key As K _ ) As Boolean |
C# |
---|
public bool Remove ( K key ) |
Visual C++ |
---|
public: virtual bool Remove ( K key ) sealed |
Parameters
- key
- K type parameter of net.esper.compat.EBaseDictionary<(Of K, V>).
The key of the element to remove.
Return Value
true if the element is successfully removed; otherwise, false. This method also returns false if key was not found in the original IDictionary<(Of TKey, TValue>).
Exceptions
Exception | Condition |
---|---|
System.NotSupportedException | The IDictionary<(Of TKey, TValue>) is read-only. |
System.ArgumentNullException | key is null. |