ImmutableArray<T>.InsertRange メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
| 名前 | 説明 |
|---|---|
| InsertRange(Int32, ImmutableArray<T>) |
指定した値を指定したインデックス位置に挿入します。 |
| InsertRange(Int32, IEnumerable<T>) |
指定した値を指定したインデックス位置に挿入します。 |
InsertRange(Int32, ImmutableArray<T>)
指定した値を指定したインデックス位置に挿入します。
public:
System::Collections::Immutable::ImmutableArray<T> InsertRange(int index, System::Collections::Immutable::ImmutableArray<T> items);
public System.Collections.Immutable.ImmutableArray<T> InsertRange(int index, System.Collections.Immutable.ImmutableArray<T> items);
member this.InsertRange : int * System.Collections.Immutable.ImmutableArray<'T> -> System.Collections.Immutable.ImmutableArray<'T>
Public Function InsertRange (index As Integer, items As ImmutableArray(Of T)) As ImmutableArray(Of T)
パラメーター
- index
- Int32
値を挿入する位置のインデックス。
- items
- ImmutableArray<T>
挿入する要素。
返品
指定したインデックスに項目が挿入された新しい変更できない配列。
適用対象
InsertRange(Int32, IEnumerable<T>)
指定した値を指定したインデックス位置に挿入します。
public:
System::Collections::Immutable::ImmutableArray<T> InsertRange(int index, System::Collections::Generic::IEnumerable<T> ^ items);
public System.Collections.Immutable.ImmutableArray<T> InsertRange(int index, System.Collections.Generic.IEnumerable<T> items);
member this.InsertRange : int * seq<'T> -> System.Collections.Immutable.ImmutableArray<'T>
Public Function InsertRange (index As Integer, items As IEnumerable(Of T)) As ImmutableArray(Of T)
パラメーター
- index
- Int32
値を挿入する位置のインデックス。
- items
- IEnumerable<T>
挿入する要素。
返品
指定したインデックスに項目が挿入された新しい変更できない配列。