ImmutableArray<T>.Contains(T) Método
Definición
Determina si el elemento especificado existe en la matriz.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
Parámetros
- item
- T
Elemento que se va a buscar.The item to search for.
Devoluciones
true
si se encontró el elemento especificado; de lo contrario, es false
.true
if the specified item was found in the array; otherwise false
.