ImmutableList<T>.IImmutableList<T>.RemoveRange Método

Definição

Remove um intervalo de elementos dessa lista imutável.

Sobrecargas

IImmutableList<T>.RemoveRange(IEnumerable<T>, IEqualityComparer<T>)

Remove um intervalo de elementos dessa lista imutável que correspondem aos itens especificados.

IImmutableList<T>.RemoveRange(Int32, Int32)

Remove o número especificado de elementos no local especificado dessa lista.

Comentários

Este membro é uma implementação do membro de interface explícita. Ele só pode ser usado quando a instância de ImmutableList<T> é convertida em uma interface de IImmutableList<T>.

IImmutableList<T>.RemoveRange(IEnumerable<T>, IEqualityComparer<T>)

Origem:
ImmutableList_1.cs
Origem:
ImmutableList_1.cs
Origem:
ImmutableList_1.cs

Remove um intervalo de elementos dessa lista imutável que correspondem aos itens especificados.

 virtual System::Collections::Immutable::IImmutableList<T> ^ System.Collections.Immutable.IImmutableList<T>.RemoveRange(System::Collections::Generic::IEnumerable<T> ^ items, System::Collections::Generic::IEqualityComparer<T> ^ equalityComparer) = System::Collections::Immutable::IImmutableList<T>::RemoveRange;
System.Collections.Immutable.IImmutableList<T> IImmutableList<T>.RemoveRange (System.Collections.Generic.IEnumerable<T> items, System.Collections.Generic.IEqualityComparer<T> equalityComparer);
abstract member System.Collections.Immutable.IImmutableList<T>.RemoveRange : seq<'T> * System.Collections.Generic.IEqualityComparer<'T> -> System.Collections.Immutable.IImmutableList<'T>
override this.System.Collections.Immutable.IImmutableList<T>.RemoveRange : seq<'T> * System.Collections.Generic.IEqualityComparer<'T> -> System.Collections.Immutable.IImmutableList<'T>
Function RemoveRange (items As IEnumerable(Of T), equalityComparer As IEqualityComparer(Of T)) As IImmutableList(Of T) Implements IImmutableList(Of T).RemoveRange

Parâmetros

items
IEnumerable<T>

O intervalo de itens a serem removidos da lista, se encontrado.

equalityComparer
IEqualityComparer<T>

O comparador de igualdade a ser usado para comparar os elementos.

Retornos

Uma lista imutável com os itens removidos.

Implementações

Exceções

items ou equalityComparer é null.

Comentários

Este membro é uma implementação do membro de interface explícita. Ele só pode ser usado quando a instância de ImmutableList<T> é convertida em uma interface de IImmutableList<T>.

Aplica-se a

IImmutableList<T>.RemoveRange(Int32, Int32)

Origem:
ImmutableList_1.cs
Origem:
ImmutableList_1.cs
Origem:
ImmutableList_1.cs

Remove o número especificado de elementos no local especificado dessa lista.

 virtual System::Collections::Immutable::IImmutableList<T> ^ System.Collections.Immutable.IImmutableList<T>.RemoveRange(int index, int count) = System::Collections::Immutable::IImmutableList<T>::RemoveRange;
System.Collections.Immutable.IImmutableList<T> IImmutableList<T>.RemoveRange (int index, int count);
abstract member System.Collections.Immutable.IImmutableList<T>.RemoveRange : int * int -> System.Collections.Immutable.IImmutableList<'T>
override this.System.Collections.Immutable.IImmutableList<T>.RemoveRange : int * int -> System.Collections.Immutable.IImmutableList<'T>
Function RemoveRange (index As Integer, count As Integer) As IImmutableList(Of T) Implements IImmutableList(Of T).RemoveRange

Parâmetros

index
Int32

O índice inicial do intervalo de elementos a serem removidos.

count
Int32

O número de elementos a serem removidos.

Retornos

Uma nova lista com os elementos removidos.

Implementações

Comentários

Este membro é uma implementação do membro de interface explícita. Ele só pode ser usado quando a instância de ImmutableList<T> é convertida em uma interface de IImmutableList<T>.

Aplica-se a