ImmutableArray<T>.IImmutableList<T>.RemoveRange Yöntem

Tanım

Aşırı Yüklemeler

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

Belirtilen öğeleri bu diziden kaldırır.

IImmutableList<T>.RemoveRange(Int32, Int32)

Belirtilen konumdaki öğelerin kaldırıldığı bir dizi döndürür.

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

Kaynak:
ImmutableArray_1.cs
Kaynak:
ImmutableArray_1.cs
Kaynak:
ImmutableArray_1.cs

Belirtilen öğeleri bu diziden kaldırır.

 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

Parametreler

items
IEnumerable<T>

Eşleşmeler bu listede bulunursa kaldırılacak öğeler.

equalityComparer
IEqualityComparer<T>

Aramada kullanılacak eşitlik karşılaştırıcısı.

Döndürülenler

Öğeleri kaldırılmış yeni bir dizi.

Uygulamalar

Açıklamalar

Bu üye, açık bir arabirim üyesi uygulamasıdır. Yalnızca örnek bir IImmutableList<T> arabirime ImmutableArray<T> yayınlandığında kullanılabilir.

Şunlara uygulanır

IImmutableList<T>.RemoveRange(Int32, Int32)

Kaynak:
ImmutableArray_1.cs
Kaynak:
ImmutableArray_1.cs
Kaynak:
ImmutableArray_1.cs

Belirtilen konumdaki öğelerin kaldırıldığı bir dizi döndürür.

 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

Parametreler

index
Int32

Diziden kaldırılacak başlangıç öğesinin 0 tabanlı dizini.

count
Int32

Diziden kaldırılacak öğelerin sayısı.

Döndürülenler

Belirtilen öğelerin kaldırıldığı yeni dizi.

Uygulamalar

Açıklamalar

Bu üye, açık bir arabirim üyesi uygulamasıdır. Yalnızca örnek bir IImmutableList<T> arabirime ImmutableArray<T> yayınlandığında kullanılabilir.

Şunlara uygulanır