ImmutableSortedSet<T>.IImmutableSet<T>.SymmetricExcept 方法

定义

创建一个不可变集,该集仅包含存在于当前集或指定集合(但不同时存在于两者中)中的元素。

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

参数

other
IEnumerable<T>

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

返回

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

实现

注解

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

System.Collections.Immutable NuGet 包

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

适用于