ISet<T>.ExceptWith(IEnumerable<T>) 方法

定义

从当前集内移除指定集合中的所有元素。

public:
 void ExceptWith(System::Collections::Generic::IEnumerable<T> ^ other);
public void ExceptWith (System.Collections.Generic.IEnumerable<T> other);
abstract member ExceptWith : seq<'T> -> unit
Public Sub ExceptWith (other As IEnumerable(Of T))

参数

other
IEnumerable<T>

要从集内移除的项的集合。

例外

othernull

注解

此方法是 O (n) 操作,其中 n 是 参数中的 other 元素数。

适用于