ImmutableSortedSet<T>.ISet<T>.SymmetricExceptWith 方法

定义

修改当前集,使该集仅包含存在于当前集或指定集合中的元素(但不同时存在于两者中)。

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

参数

other
IEnumerable<T>

要与当前集进行比较的集合。

实现

注解

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

System.Collections.Immutable NuGet 包

关于不可变集合以及如何安装

适用于