CollectionExtensions.InsertRange<T> Método

Definição

Insere os elementos de um intervalo no List<T> no índice especificado.

public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static void InsertRange(System::Collections::Generic::List<T> ^ list, int index, ReadOnlySpan<T> source);
public static void InsertRange<T> (this System.Collections.Generic.List<T> list, int index, ReadOnlySpan<T> source);
static member InsertRange : System.Collections.Generic.List<'T> * int * ReadOnlySpan<'T> -> unit
<Extension()>
Public Sub InsertRange(Of T) (list As List(Of T), index As Integer, source As ReadOnlySpan(Of T))

Parâmetros de tipo

T

O tipo de elementos na lista.

Parâmetros

list
List<T>

A lista na qual os elementos devem ser inseridos.

index
Int32

O índice baseado em zero no qual os novos elementos devem ser inseridos.

source
ReadOnlySpan<T>

O intervalo cujos elementos devem ser adicionados ao List<T>.

Exceções

O list é null.

indexé menor que 0 ou maior que list.Count

Aplica-se a