ImmutableArray<T>.Insert(Int32, T) 方法

定义

返回一个新数组,指定的值已插入到该数组的指定位置。

public:
 System::Collections::Immutable::ImmutableArray<T> Insert(int index, T item);
public System.Collections.Immutable.ImmutableArray<T> Insert (int index, T item);
member this.Insert : int * 'T -> System.Collections.Immutable.ImmutableArray<'T>
Public Function Insert (index As Integer, item As T) As ImmutableArray(Of T)

参数

index
Int32

数组中从 0 开始的索引,新项应插入到该位置。

item
T

要插入到数组开始处的项。

返回

一个新数组,项已插入到该数组的指定索引处。

适用于