Method Contains
- Namespace
- DisCatSharp
- Assembly
- DisCatSharp.dll
Contains(T)
Checks whether given item is present in the buffer. This method is not implemented. Use Contains(Func<T, bool>) instead.
public bool Contains(T item)
Parameters
item
TItem to check for.
Returns
- bool
Whether the buffer contains the item.
Exceptions
Contains(Func<T, bool>)
Checks whether given item is present in the buffer using given predicate to find it.
public bool Contains(Func<T, bool> predicate)
Parameters
Returns
- bool
Whether the buffer contains the item.