ImmutableSortedSet<T>.SymmetricExcept(IEnumerable<T>) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates an immutable sorted set that contains elements that exist either in this set or in a given sequence, but not both.
public:
System::Collections::Immutable::ImmutableSortedSet<T> ^ SymmetricExcept(System::Collections::Generic::IEnumerable<T> ^ other);
public System.Collections.Immutable.ImmutableSortedSet<T> SymmetricExcept (System.Collections.Generic.IEnumerable<T> other);
member this.SymmetricExcept : seq<'T> -> System.Collections.Immutable.ImmutableSortedSet<'T>
Public Function SymmetricExcept (other As IEnumerable(Of T)) As ImmutableSortedSet(Of T)
Parameters
- other
- IEnumerable<T>
The other sequence of items.
Returns
The new immutable sorted set.
Remarks
System.Collections.Immutable NuGet package
About immutable collections and how to install
Applies to
Colaborați cu noi pe GitHub
Sursa pentru acest conținut poate fi găsită pe GitHub, unde puteți, de asemenea, să creați și să consultați probleme și solicitări de tragere. Pentru mai multe informații, consultați ghidul nostru pentru colaboratori.