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

Namespace: BrightstarDB.EntityFramework
Assembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)

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
The object to locate in the ICollection<(Of <(<'T>)>)>.

Return Value

Type: Boolean
true if item is found in the ICollection<(Of <(<'T>)>)>; otherwise, false.

Implements

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

See Also