Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

StringCollection::IList::Contains Method (Object^)

 

Determines whether an element is in the StringCollection.

Namespace:   System.Collections.Specialized
Assembly:  System (in System.dll)

private:
virtual bool Contains(
	Object^ value
) sealed = IList::Contains

Parameters

value
Type: System::Object^

The Object to locate in the StringCollection. The value can be null.

Return Value

Type: System::Boolean

true if value is found in the StringCollection; otherwise, false.

This method determines equality by calling Object::Equals.

This method performs a linear search; therefore, this method is an O(n) operation, where n is Count.

Starting with the .NET Framework 2.0, this method uses the collection’s objects’ Equals and CompareTo methods on item to determine whether item exists. In the earlier versions of the .NET Framework, this determination was made by using the Equals and CompareTo methods of the item parameter on the objects in the collection.

Universal Windows Platform
Available since 10
.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft