ImmutableHashSet<T>.ISet<T>.ExceptWith 方法

定义

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

 virtual void System.Collections.Generic.ISet<T>.ExceptWith(System::Collections::Generic::IEnumerable<T> ^ other) = System::Collections::Generic::ISet<T>::ExceptWith;
void ISet<T>.ExceptWith (System.Collections.Generic.IEnumerable<T> other);
abstract member System.Collections.Generic.ISet<T>.ExceptWith : seq<'T> -> unit
override this.System.Collections.Generic.ISet<T>.ExceptWith : seq<'T> -> unit
Sub ExceptWith (other As IEnumerable(Of T)) Implements ISet(Of T).ExceptWith

参数

other
IEnumerable<T>

要移除的项的集合。

实现

注解

此成员是显式接口成员的实现。 它只能在 ImmutableHashSet<T> 实例被强制转换为 ISet<T> 接口时使用。

适用于