[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 first occurrence of a specific object from the ICollection<(Of T>).
Namespace: net.esper.compat
Assembly: NEsper (in NEsper.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Function Remove ( _ item As KeyValuePair(Of TKey, TValue) _ ) As Boolean |
C# |
---|
public bool Remove ( KeyValuePair<TKey, TValue> item ) |
Visual C++ |
---|
public: virtual bool Remove ( KeyValuePair<TKey, TValue> item ) sealed |
Parameters
- item
- System.Collections.Generic.KeyValuePair<(Of TKey, TValue>)
The object to remove from the ICollection<(Of T>).
Return Value
true if item was successfully removed from the ICollection<(Of T>); otherwise, false. This method also returns false if item is not found in the original ICollection<(Of T>).
Exceptions
Exception | Condition |
---|---|
System.NotSupportedException | The ICollection<(Of T>) is read-only. |