ImmutableHashSet<T>.SymmetricExcept(IEnumerable<T>) Método

Definición

Crea un conjunto hash inmutable que únicamente contiene elementos que están presentes en el conjunto actual o en la colección especificada, pero no en ambos.

public:
 System::Collections::Immutable::ImmutableHashSet<T> ^ SymmetricExcept(System::Collections::Generic::IEnumerable<T> ^ other);
public System.Collections.Immutable.ImmutableHashSet<T> SymmetricExcept (System.Collections.Generic.IEnumerable<T> other);
member this.SymmetricExcept : seq<'T> -> System.Collections.Immutable.ImmutableHashSet<'T>
Public Function SymmetricExcept (other As IEnumerable(Of T)) As ImmutableHashSet(Of T)

Parámetros

other
IEnumerable<T>

Colección que se va a comparar con el conjunto actual.

Devoluciones

Conjunto nuevo que únicamente contiene elementos que están presentes en el conjunto actual o en la colección especificada, pero no en ambos.

Se aplica a