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

Definición

Quita los elementos de la colección especificada del conjunto hash inmutable actual.

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

Parámetros

other
IEnumerable<T>

Colección de elementos que se van a quitar de este conjunto.

Devoluciones

Nuevo conjunto con los elementos quitados; o el conjunto original si ninguno de los elementos estaba en el conjunto.

Se aplica a