ImmutableList<T>.InsertRange(Int32, IEnumerable<T>) メソッド

定義

コレクションの要素を、変更できないリスト内の指定したインデックス位置に挿入します。

public:
 System::Collections::Immutable::ImmutableList<T> ^ InsertRange(int index, System::Collections::Generic::IEnumerable<T> ^ items);
public System.Collections.Immutable.ImmutableList<T> InsertRange (int index, System.Collections.Generic.IEnumerable<T> items);
member this.InsertRange : int * seq<'T> -> System.Collections.Immutable.ImmutableList<'T>
Public Function InsertRange (index As Integer, items As IEnumerable(Of T)) As ImmutableList(Of T)

パラメーター

index
Int32

要素を挿入する位置を示す 0 から始まるインデックス。

items
IEnumerable<T>

挿入する要素を含むコレクション。

戻り値

要素を挿入した後の新しい変更できないリスト。

適用対象