ImmutableArray<T>.Builder.InsertRange 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
InsertRange(Int32, IEnumerable<T>) |
在指定的索引處插入指定的值。 |
InsertRange(Int32, ImmutableArray<T>) |
在指定的索引處插入指定的值。 |
InsertRange(Int32, IEnumerable<T>)
在指定的索引處插入指定的值。
public:
void InsertRange(int index, System::Collections::Generic::IEnumerable<T> ^ items);
public void InsertRange (int index, System.Collections.Generic.IEnumerable<T> items);
member this.InsertRange : int * seq<'T> -> unit
Public Sub InsertRange (index As Integer, items As IEnumerable(Of T))
參數
- index
- Int32
要插入值的索引。
- items
- IEnumerable<T>
要插入的項目。
適用於
InsertRange(Int32, ImmutableArray<T>)
在指定的索引處插入指定的值。
public:
void InsertRange(int index, System::Collections::Immutable::ImmutableArray<T> items);
public void InsertRange (int index, System.Collections.Immutable.ImmutableArray<T> items);
member this.InsertRange : int * System.Collections.Immutable.ImmutableArray<'T> -> unit
Public Sub InsertRange (index As Integer, items As ImmutableArray(Of T))
參數
- index
- Int32
要插入值的索引。
- items
- ImmutableArray<T>
要插入的項目。