ImmutableArray<T>.Builder.InsertRange Method

Definition

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