[This is preliminary documentation and is subject to change.]

Determines whether the ListWithEvents<(Of <(<'T>)>)> contains a specific value.

Namespace: Tools.CollectionsT.GenericT
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

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

Parameters

item
Type: T
The object to locate in the ListWithEvents<(Of <(<'T>)>)>.

Return Value

true if item is found in the ListWithEvents<(Of <(<'T>)>)>; otherwise, false.

Implements

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

See Also