ImmutableArray<T>.Insert(Int32, T) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回已在指定位置插入指定值的新陣列。
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
陣列中以零為起始的索引,此為應加入新項目的位置。
- item
- T
要插入陣列開始處的項目。
傳回
新陣列,其中包含已插入指定索引處的項目。