ArrayList.Contains Method (System.Collections)

Switch View :
ScriptFree
.NET Framework Class Library
ArrayList.Contains Method

Determines whether an element is in the ArrayList.

Namespace:  System.Collections
Assembly:  mscorlib (in mscorlib.dll)
Syntax

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

Parameters

item
Type: System.Object
The Object to locate in the ArrayList. The value can be null.

Return Value

Type: System.Boolean
true if item is found in the ArrayList; otherwise, false.

Implements

IList.Contains(Object)
Remarks

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

This method determines equality by calling Object.Equals.

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.

Version Information

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1
Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also

Reference

Other Resources