ImmutableArray<T>.Builder.InsertRange メソッド

定義

オーバーロード

InsertRange(Int32, IEnumerable<T>)

指定したインデックス位置に指定した値を挿入します。

InsertRange(Int32, ImmutableArray<T>)

指定したインデックス位置に指定した値を挿入します。

InsertRange(Int32, IEnumerable<T>)

ソース:
ImmutableArray_1.Builder.cs
ソース:
ImmutableArray_1.Builder.cs
ソース:
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>)

ソース:
ImmutableArray_1.Builder.cs
ソース:
ImmutableArray_1.Builder.cs
ソース:
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>

挿入する要素。

適用対象