Method Remove
- Namespace
- DisCatSharp
- Assembly
- DisCatSharp.dll
Remove(T)
Removes an item from the buffer. This method is not implemented. Use Remove(Func<T, bool>) instead.
public bool Remove(T item)
Parameters
item
TItem to remove.
Returns
- bool
Whether an item was removed or not.
Remove(Func<T, bool>)
Removes an item from the buffer using given predicate to find it.
public bool Remove(Func<T, bool> predicate)
Parameters
Returns
- bool
Whether an item was removed or not.