ImmutableArray<T>.IImmutableList<T>.RemoveRange Metoda

Definicja

Przeciążenia

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

Usuwa określone elementy z tej tablicy.

IImmutableList<T>.RemoveRange(Int32, Int32)

Zwraca tablicę z elementami w określonym położeniu usuniętym.

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

Źródło:
ImmutableArray_1.cs
Źródło:
ImmutableArray_1.cs
Źródło:
ImmutableArray_1.cs

Usuwa określone elementy z tej tablicy.

 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

Parametry

items
IEnumerable<T>

Elementy do usunięcia, jeśli zostaną znalezione dopasowania na tej liście.

equalityComparer
IEqualityComparer<T>

Porównanie równości do użycia w wyszukiwaniu.

Zwraca

Nowa tablica z usuniętymi elementami.

Implementuje

Uwagi

Ten element jest jawną implementacją członków. Można go używać tylko wtedy, gdy ImmutableArray<T> wystąpienie jest rzutowanie do interfejsu IImmutableList<T> .

Dotyczy

IImmutableList<T>.RemoveRange(Int32, Int32)

Źródło:
ImmutableArray_1.cs
Źródło:
ImmutableArray_1.cs
Źródło:
ImmutableArray_1.cs

Zwraca tablicę z elementami w określonym położeniu usuniętym.

 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

Parametry

index
Int32

Indeks 0 elementu początkowego do usunięcia z tablicy.

count
Int32

Liczba elementów do usunięcia z tablicy.

Zwraca

Nowa tablica z określonymi elementami została usunięta.

Implementuje

Uwagi

Ten element jest jawną implementacją członków. Można go używać tylko wtedy, gdy ImmutableArray<T> wystąpienie jest rzutowanie do interfejsu IImmutableList<T> .

Dotyczy