Table of Contents

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 T

Item 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

predicate Func<T, bool>

Predicate used to find the item.

Returns

bool

Whether an item was removed or not.