ImmutableArray<T>.InsertRange メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
InsertRange(Int32, IEnumerable<T>) |
指定したインデックス位置に指定した値を挿入します。 |
InsertRange(Int32, ImmutableArray<T>) |
指定したインデックス位置に指定した値を挿入します。 |
InsertRange(Int32, ReadOnlySpan<T>) |
指定したインデックス位置に指定した値を挿入します。 |
InsertRange(Int32, 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>
挿入する要素。
戻り値
指定したインデックス位置に項目が挿入された新しい変更できない配列。
適用対象
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, ReadOnlySpan<T>)
指定したインデックス位置に指定した値を挿入します。
public:
System::Collections::Immutable::ImmutableArray<T> InsertRange(int index, ReadOnlySpan<T> items);
public System.Collections.Immutable.ImmutableArray<T> InsertRange (int index, ReadOnlySpan<T> items);
member this.InsertRange : int * ReadOnlySpan<'T> -> System.Collections.Immutable.ImmutableArray<'T>
Public Function InsertRange (index As Integer, items As ReadOnlySpan(Of T)) As ImmutableArray(Of T)
パラメーター
- index
- Int32
値を挿入する位置を示すインデックス。
- items
- ReadOnlySpan<T>
挿入する要素。
戻り値
新しい変更できないコレクション。
適用対象
InsertRange(Int32, T[])
指定したインデックス位置に指定した値を挿入します。
public:
System::Collections::Immutable::ImmutableArray<T> InsertRange(int index, cli::array <T> ^ items);
public System.Collections.Immutable.ImmutableArray<T> InsertRange (int index, T[] items);
member this.InsertRange : int * 'T[] -> System.Collections.Immutable.ImmutableArray<'T>
Public Function InsertRange (index As Integer, items As T()) As ImmutableArray(Of T)
パラメーター
- index
- Int32
値を挿入する位置を示すインデックス。
- items
- T[]
挿入する要素。
戻り値
新しい変更できないコレクション。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET