ImmutableArray<T>.Builder.InsertRange 方法

定义

重载

InsertRange(Int32, IEnumerable<T>)

在指定索引处插入指定的值。

InsertRange(Int32, ImmutableArray<T>)

在指定索引处插入指定的值。

InsertRange(Int32, IEnumerable<T>)

Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs

在指定索引处插入指定的值。

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))

参数

index
Int32

插入值的索引位置。

items
IEnumerable<T>

要插入的元素。

适用于

InsertRange(Int32, ImmutableArray<T>)

Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs

在指定索引处插入指定的值。

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))

参数

index
Int32

插入值的索引位置。

items
ImmutableArray<T>

要插入的元素。

适用于