ImmutableHashSet<T>.IImmutableSet<T>.Except 方法

定义

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

 virtual System::Collections::Immutable::IImmutableSet<T> ^ System.Collections.Immutable.IImmutableSet<T>.Except(System::Collections::Generic::IEnumerable<T> ^ other) = System::Collections::Immutable::IImmutableSet<T>::Except;
System.Collections.Immutable.IImmutableSet<T> IImmutableSet<T>.Except (System.Collections.Generic.IEnumerable<T> other);
abstract member System.Collections.Immutable.IImmutableSet<T>.Except : seq<'T> -> System.Collections.Immutable.IImmutableSet<'T>
override this.System.Collections.Immutable.IImmutableSet<T>.Except : seq<'T> -> System.Collections.Immutable.IImmutableSet<'T>
Function Except (other As IEnumerable(Of T)) As IImmutableSet(Of T) Implements IImmutableSet(Of T).Except

参数

other
IEnumerable<T>

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

返回

已移除项的新集;如果原始集不包含任何项,则为原始集。

实现

注解

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

适用于