Returns whether or not the queue contains the given item, using the default EqualityComparer if the item to find is non-null.

Namespace: MonoSoftware.Core.Collections
Assembly: MonoSoftware.Core (in MonoSoftware.Core.dll) Version: 1.0.40.669 (1.0.40.669)

Syntax

C#
public bool Contains(
	T item
)
Visual Basic
Public Function Contains ( 
	item As T
) As Boolean
Visual C++
public:
virtual bool Contains(
	T item
) sealed
F#
abstract Contains : 
        item : 'T -> bool 
override Contains : 
        item : 'T -> bool 

Parameters

item
Type: T

Return Value

Type: Boolean

Implements

ICollection<(Of <(<'T>)>)>..::..Contains(T)

See Also