ObservableHashSet<T>.RemoveWhere(Predicate<T>) 方法

定义

从哈希集中删除与指定谓词定义的条件匹配的所有元素。

public virtual int RemoveWhere (Predicate<T> match);
abstract member RemoveWhere : Predicate<'T> -> int
override this.RemoveWhere : Predicate<'T> -> int
Public Overridable Function RemoveWhere (match As Predicate(Of T)) As Integer

参数

match
Predicate<T>

Predicate<T> 委托,用于定义要移除的元素应满足的条件。

返回

从哈希集中删除的元素数。

适用于