Determines whether a sequence contains a specified element by using the default equality comparer.
Namespace:
System.Linq
Assembly:
System.Core (in System.Core.dll)
Visual Basic (Declaration)
<ExtensionAttribute> _
Public Shared Function Contains(Of TSource) ( _
source As IEnumerable(Of TSource), _
value As TSource _
) As Boolean
Dim source As IEnumerable(Of TSource)
Dim value As TSource
Dim returnValue As Boolean
returnValue = source.Contains(value)
public static bool Contains<TSource>(
this IEnumerable<TSource> source,
TSource value
)
[ExtensionAttribute]
public:
generic<typename TSource>
static bool Contains(
IEnumerable<TSource>^ source,
TSource value
)
JScript does not support generic types or methods.
Type Parameters
- TSource
The type of the elements of source.
Return Value
Type:
System..::.Boolean
true if the source sequence contains an element that has the specified value; otherwise, false.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerable<(Of <(TSource>)>). When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
| Exception | Condition |
|---|
| ArgumentNullException |
source is nullNothingnullptra null reference (Nothing in Visual Basic). |
If the type of source implements ICollection<(Of <(T>)>), the Contains method in that implementation is invoked to obtain the result. Otherwise, this method determines whether source contains the specified element.
Enumeration is terminated as soon as a matching element is found.
Elements are compared to the specified value by using the default equality comparer, Default.
The following code example demonstrates how to use Contains<(Of <(TSource>)>)(IEnumerable<(Of <(TSource>)>), TSource) to determine whether an array contains a specific element.
' Create an array of strings.
Dim fruits() As String = {"apple", "banana", "mango", "orange", "passionfruit", "grape"}
' This is the string to search the array for.
Dim fruit As String = "mango"
' Determine if the array contains the specified string.
Dim hasMango As Boolean = fruits.Contains(fruit)
Dim text As String = IIf(hasMango, "does", "does not")
' Display the output.
MsgBox("The array " & text & " contain " & fruit)
' This code produces the following output:
'
' The array does contain mango
string[] fruits = { "apple", "banana", "mango", "orange", "passionfruit", "grape" };
string fruit = "mango";
bool hasMango = fruits.Contains(fruit);
Console.WriteLine(
"The array {0} contain '{1}'.",
hasMango ? "does" : "does not",
fruit);
// This code produces the following output:
//
// The array does contain 'mango'.
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
.NET Framework
Supported in: 3.5
.NET Compact Framework
Supported in: 3.5
XNA Framework
Supported in: 3.0
Reference