ReadOnlyObservableSet<T>.RemoveItem(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.
Removes the specified element from a ReadOnlyObservableSet<T> object.
protected:
bool RemoveItem(T item);
protected:
bool RemoveItem(T item);
bool RemoveItem(T item);
protected bool RemoveItem (T item);
member this.RemoveItem : 'T -> bool
Protected Function RemoveItem (item As T) As Boolean
Parameters
- item
- T
The element to remove from the set.
Returns
true if the element is successfully found and removed; otherwise, false. This method returns false if item is not found in the ReadOnlyObservableSet<T> object.