Returns trueTruetruetrue (True in Visual Basic) if this set contains the specified element.
            
Namespace: Iesi.Collections.GenericAssembly: Iesi.Collections (in Iesi.Collections.dll) Version: 1.0.1.0 (3.2.0.4000)
Syntax
| C# | 
|---|
public bool Contains(
	T o
)  | 
| Visual Basic | 
|---|
Public Function Contains ( _
	o As T _
) As Boolean  | 
| Visual C++ | 
|---|
public:
virtual bool Contains(
	T o
) sealed  | 
Parameters
- o
 - Type: T
The element to look for. 
Return Value
trueTruetruetrue (True in Visual Basic) if this set contains the specified element, 
falseFalsefalsefalse (False in Visual Basic) otherwise.
See Also