ImmutableArray<T>.Builder.InsertRange Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
InsertRange(Int32, IEnumerable<T>) |
Inserts the specified values at the specified index. |
InsertRange(Int32, ImmutableArray<T>) |
Inserts the specified values at the specified index. |
InsertRange(Int32, IEnumerable<T>)
- Source:
- ImmutableArray_1.Builder.cs
- Source:
- ImmutableArray_1.Builder.cs
- Source:
- ImmutableArray_1.Builder.cs
Inserts the specified values at the specified index.
public:
void InsertRange(int index, System::Collections::Generic::IEnumerable<T> ^ items);
public void InsertRange (int index, System.Collections.Generic.IEnumerable<T> items);
member this.InsertRange : int * seq<'T> -> unit
Public Sub InsertRange (index As Integer, items As IEnumerable(Of T))
Parameters
- index
- Int32
The index at which to insert the value.
- items
- IEnumerable<T>
The elements to insert.
Applies to
InsertRange(Int32, ImmutableArray<T>)
- Source:
- ImmutableArray_1.Builder.cs
- Source:
- ImmutableArray_1.Builder.cs
- Source:
- ImmutableArray_1.Builder.cs
Inserts the specified values at the specified index.
public:
void InsertRange(int index, System::Collections::Immutable::ImmutableArray<T> items);
public void InsertRange (int index, System.Collections.Immutable.ImmutableArray<T> items);
member this.InsertRange : int * System.Collections.Immutable.ImmutableArray<'T> -> unit
Public Sub InsertRange (index As Integer, items As ImmutableArray(Of T))
Parameters
- index
- Int32
The index at which to insert the value.
- items
- ImmutableArray<T>
The elements to insert.
Applies to
Colaborar conosco no GitHub
A fonte deste conteúdo pode ser encontrada no GitHub, onde você também pode criar e revisar problemas e solicitações de pull. Para obter mais informações, confira o nosso guia para colaboradores.