ImmutableSortedSet<T>.Except(IEnumerable<T>) Método
Definição
Remove um conjunto especificado de itens desse conjunto classificado imutável.Removes a specified set of items from this immutable sorted set.
public:
System::Collections::Immutable::ImmutableSortedSet<T> ^ Except(System::Collections::Generic::IEnumerable<T> ^ other);
public System.Collections.Immutable.ImmutableSortedSet<T> Except (System.Collections.Generic.IEnumerable<T> other);
member this.Except : seq<'T> -> System.Collections.Immutable.ImmutableSortedSet<'T>
Public Function Except (other As IEnumerable(Of T)) As ImmutableSortedSet(Of T)
Parâmetros
- other
- IEnumerable<T>
Os itens a serem removidos desse conjunto.The items to remove from this set.
Retornos
Um novo conjunto com os itens removidos; ou o conjunto original se nenhum dos itens tiverem sido encontrados no conjunto.A new set with the items removed; or the original set if none of the items were in the set.
Comentários
Pacote NuGet System. Collections. imutávelSystem.Collections.Immutable NuGet package
Sobre coleções imutáveis e como instalarAbout immutable collections and how to install