ImmutableList.RemoveRange<T> Método

Definición

Quita los valores especificados de esta lista.

public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static System::Collections::Immutable::IImmutableList<T> ^ RemoveRange(System::Collections::Immutable::IImmutableList<T> ^ list, System::Collections::Generic::IEnumerable<T> ^ items);
public static System.Collections.Immutable.IImmutableList<T> RemoveRange<T> (this System.Collections.Immutable.IImmutableList<T> list, System.Collections.Generic.IEnumerable<T> items);
static member RemoveRange : System.Collections.Immutable.IImmutableList<'T> * seq<'T> -> System.Collections.Immutable.IImmutableList<'T>
<Extension()>
Public Function RemoveRange(Of T) (list As IImmutableList(Of T), items As IEnumerable(Of T)) As IImmutableList(Of T)

Parámetros de tipo

T

Tipo de elementos de la lista.

Parámetros

list
IImmutableList<T>

Lista en la que buscar.

items
IEnumerable<T>

Elementos a quitar si se encuentran coincidencias en esta lista.

Devoluciones

Nueva lista inmutable con los elementos eliminados.

Se aplica a