ImmutableArray<T>.Contains Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Contains(T) |
Determines whether the specified item exists in the array. |
Contains(T, IEqualityComparer<T>) |
Determines whether the specified item exists in the array. |
Contains(T)
- Source:
- ImmutableArray_1.cs
- Source:
- ImmutableArray_1.cs
- Source:
- ImmutableArray_1.cs
Determines whether the specified item exists in the array.
public:
virtual bool Contains(T item);
public bool Contains (T item);
abstract member Contains : 'T -> bool
override this.Contains : 'T -> bool
Public Function Contains (item As T) As Boolean
Parameters
- item
- T
The item to search for.
Returns
true
if the specified item was found in the array; otherwise false
.
Implements
Applies to
Contains(T, IEqualityComparer<T>)
- Source:
- ImmutableArray_1.cs
- Source:
- ImmutableArray_1.cs
Determines whether the specified item exists in the array.
public:
bool Contains(T item, System::Collections::Generic::IEqualityComparer<T> ^ equalityComparer);
public bool Contains (T item, System.Collections.Generic.IEqualityComparer<T>? equalityComparer);
member this.Contains : 'T * System.Collections.Generic.IEqualityComparer<'T> -> bool
Public Function Contains (item As T, equalityComparer As IEqualityComparer(Of T)) As Boolean
Parameters
- item
- T
The item to search for.
- equalityComparer
- IEqualityComparer<T>
The equality comparer to use in the search.
If null
, Default is used.
Returns
true
if an equal value was found in the array; false
otherwise.