EqtBaseCollection<T>.Contains(T) Method

Definition

Returns a value that indicates whether the provided item is already in the collection.

public:
 virtual bool Contains(T item);
public virtual bool Contains (T item);
abstract member Contains : 'T -> bool
override this.Contains : 'T -> bool
Public Overridable Function Contains (item As T) As Boolean

Parameters

item
T

An item whose type matches the generic type that was declared when the class was created.

Returns

true if the item is contained in the collection; otherwise, false.

Implements

Applies to