ImmutableArray<T>.InsertRange 方法

定义

重载

InsertRange(Int32, IEnumerable<T>)

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

InsertRange(Int32, ImmutableArray<T>)

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

InsertRange(Int32, ReadOnlySpan<T>)

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

InsertRange(Int32, T[])

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

InsertRange(Int32, IEnumerable<T>)

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

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

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

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

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

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

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

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

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

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

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

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[]

要插入的元素。

返回

新的不可变集合。

适用于