Method Remove
Remove(T)
Remove an item from the set
Declaration
public virtual bool Remove(T item)
Parameters
Type | Name | Description |
---|---|---|
T | item | The item to remove |
Returns
Type | Description |
---|---|
System.Boolean | True if item was (found and) removed |
Implements
Remove(T, out T)
Remove an item from the set, reporting the actual matching item object.
Declaration
public virtual bool Remove(T item, out T removeditem)
Parameters
Type | Name | Description |
---|---|---|
T | item | The value to remove. |
T | removeditem | The removed value. |
Returns
Type | Description |
---|---|
System.Boolean | True if item was found. |