Contains()

Array::Contains(const T&) const method

Determines if the specified item is in the array.

virtual bool System::Array<T>::Contains(const T &item) const override

Arguments

ParameterTypeDescription
itemconst T&Item to look for in the array

Return Value

true if the specified item is present in the array, false otherwise

See Also