ImmutableArray<T>.InsertRange Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
InsertRange(Int32, IEnumerable<T>) |
Insere os valores especificados no índice especificado. |
InsertRange(Int32, ImmutableArray<T>) |
Insere os valores especificados no índice especificado. |
InsertRange(Int32, ReadOnlySpan<T>) |
Insere os valores especificados no índice especificado. |
InsertRange(Int32, T[]) |
Insere os valores especificados no índice especificado. |
InsertRange(Int32, IEnumerable<T>)
- Origem:
- ImmutableArray_1.cs
- Origem:
- ImmutableArray_1.cs
- Origem:
- ImmutableArray_1.cs
Insere os valores especificados no índice especificado.
public:
System::Collections::Immutable::ImmutableArray<T> InsertRange(int index, System::Collections::Generic::IEnumerable<T> ^ items);
public System.Collections.Immutable.ImmutableArray<T> InsertRange (int index, System.Collections.Generic.IEnumerable<T> items);
member this.InsertRange : int * seq<'T> -> System.Collections.Immutable.ImmutableArray<'T>
Public Function InsertRange (index As Integer, items As IEnumerable(Of T)) As ImmutableArray(Of T)
Parâmetros
- index
- Int32
O índice no qual inserir o valor.
- items
- IEnumerable<T>
Os elementos a serem inseridos.
Retornos
Uma nova matriz imutável com os itens inseridos no índice especificado.
Aplica-se a
InsertRange(Int32, ImmutableArray<T>)
- Origem:
- ImmutableArray_1.cs
- Origem:
- ImmutableArray_1.cs
- Origem:
- ImmutableArray_1.cs
Insere os valores especificados no índice especificado.
public:
System::Collections::Immutable::ImmutableArray<T> InsertRange(int index, System::Collections::Immutable::ImmutableArray<T> items);
public System.Collections.Immutable.ImmutableArray<T> InsertRange (int index, System.Collections.Immutable.ImmutableArray<T> items);
member this.InsertRange : int * System.Collections.Immutable.ImmutableArray<'T> -> System.Collections.Immutable.ImmutableArray<'T>
Public Function InsertRange (index As Integer, items As ImmutableArray(Of T)) As ImmutableArray(Of T)
Parâmetros
- index
- Int32
O índice no qual inserir o valor.
- items
- ImmutableArray<T>
Os elementos a serem inseridos.
Retornos
Uma nova matriz imutável com os itens inseridos no índice especificado.
Aplica-se a
InsertRange(Int32, ReadOnlySpan<T>)
- Origem:
- ImmutableArray_1.cs
- Origem:
- ImmutableArray_1.cs
- Origem:
- ImmutableArray_1.cs
Insere os valores especificados no índice especificado.
public:
System::Collections::Immutable::ImmutableArray<T> InsertRange(int index, ReadOnlySpan<T> items);
public System.Collections.Immutable.ImmutableArray<T> InsertRange (int index, ReadOnlySpan<T> items);
member this.InsertRange : int * ReadOnlySpan<'T> -> System.Collections.Immutable.ImmutableArray<'T>
Public Function InsertRange (index As Integer, items As ReadOnlySpan(Of T)) As ImmutableArray(Of T)
Parâmetros
- index
- Int32
O índice no qual inserir o valor.
- items
- ReadOnlySpan<T>
Os elementos a serem inseridos.
Retornos
A nova coleção imutável.
Aplica-se a
InsertRange(Int32, T[])
- Origem:
- ImmutableArray_1.cs
- Origem:
- ImmutableArray_1.cs
- Origem:
- ImmutableArray_1.cs
Insere os valores especificados no índice especificado.
public:
System::Collections::Immutable::ImmutableArray<T> InsertRange(int index, cli::array <T> ^ items);
public System.Collections.Immutable.ImmutableArray<T> InsertRange (int index, T[] items);
member this.InsertRange : int * 'T[] -> System.Collections.Immutable.ImmutableArray<'T>
Public Function InsertRange (index As Integer, items As T()) As ImmutableArray(Of T)
Parâmetros
- index
- Int32
O índice no qual inserir o valor.
- items
- T[]
Os elementos a serem inseridos.
Retornos
A nova coleção imutável.