IReadOnlyObservableSet<T>.Contains(T) 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.
Determines whether the IReadOnlyObservableSet<T> contains a specific value.
public:
bool Contains(T item);
public:
bool Contains(T item);
bool Contains(T item);
public bool Contains (T item);
abstract member Contains : 'T -> bool
Public Function Contains (item As T) As Boolean
Parameters
- item
- T
The object to locate in the set.
Returns
true
if the object is found in the set, otherwise false
.