Edit

Share via


SchemaNameCollection.IList.Contains(Object) Method

Definition

Determines whether the list contains a specified value.

 virtual bool System.Collections.IList.Contains(System::Object ^ value) = System::Collections::IList::Contains;
bool IList.Contains(object? value);
bool IList.Contains(object value);
abstract member System.Collections.IList.Contains : obj -> bool
override this.System.Collections.IList.Contains : obj -> bool
Function Contains (value As Object) As Boolean Implements IList.Contains

Parameters

value
Object

The value to locate in the list.

Returns

true if the value is found in the list, otherwise false.

Implements

Remarks

This method uses the Equals and CompareTo methods of the objects in the collection to determine whether value exists.

Applies to