Determines whether the IList contains a specific value.

Namespace: Dapfor.Wpf.Data
Assembly: Dapfor.Wpf (in Dapfor.Wpf.dll) Version: 4.1.0.26317 (4.1.0.26317)

Syntax

C#
public bool Contains(
	Object value
)
Visual Basic
Public Function Contains ( 
	value As Object
) As Boolean
Visual C++
public:
virtual bool Contains(
	Object^ value
) sealed
F#
abstract Contains : 
        value : Object -> bool 
override Contains : 
        value : Object -> bool 

Parameters

value
Type: System..::..Object
The Object to locate in the IList.

Return Value

Type: Boolean
true if the Object is found in the IList; otherwise, false.

Implements

IList..::..Contains(Object)

See Also