ImmutableList<T>.IImmutableList<T>.InsertRange(Int32, IEnumerable<T>) Método

Definição

Insere os elementos especificados no índice especificado na lista imutável.Inserts the specified elements at the specified index in the immutable list.

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

Parâmetros

index
Int32

O índice no qual inserir os elementos.The index at which to insert the elements.

items
IEnumerable<T>

Os elementos a serem inseridos.The elements to insert.

Retornos

IImmutableList<T>

Uma nova lista imutável que inclui os elementos especificados.A new immutable list that includes the specified elements.

Implementações

Comentários

Este membro é uma implementação do membro de interface explícita.This member is an explicit interface member implementation. Ele só pode ser usado quando a instância de ImmutableList<T> é convertida em uma interface de IImmutableList<T>.It can be used only when the ImmutableList<T> instance is cast to an IImmutableList<T> interface.

Aplica-se a