ReadOnlyObservableSet<T>.RemoveItem(T) Method

Definition

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.

Applies to