[This is preliminary documentation and is subject to change.]
When overriden in derived class determines whether the IList contains a specific value.
Namespace: Tools.CollectionsT.GenericTAssembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)
Syntax
| C# |
|---|
public abstract bool Contains( Object value ) |
| Visual Basic |
|---|
Public MustOverride Function Contains ( _ value As Object _ ) As Boolean |
| Visual C++ |
|---|
public: virtual bool Contains( Object^ value ) abstract |
| F# |
|---|
abstract Contains : value:Object -> bool |
| JScript |
|---|
public abstract function Contains( value : Object ) : boolean |
Parameters
- value
- Type: System..::..Object
The Object to locate in the IList.
Return Value
true if the Object is found in the IList; otherwise, false.Implements
IList..::..Contains(Object)
Remarks
Provided for compatibility with CollectionEditor