ImmutableArray<T>.Builder.InsertRange 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
InsertRange(Int32, IEnumerable<T>) |
在指定索引处插入指定的值。 |
InsertRange(Int32, ImmutableArray<T>) |
在指定索引处插入指定的值。 |
InsertRange(Int32, IEnumerable<T>)
- Source:
- ImmutableArray_1.Builder.cs
- Source:
- ImmutableArray_1.Builder.cs
- Source:
- ImmutableArray_1.Builder.cs
在指定索引处插入指定的值。
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>)
- Source:
- ImmutableArray_1.Builder.cs
- Source:
- ImmutableArray_1.Builder.cs
- Source:
- ImmutableArray_1.Builder.cs
在指定索引处插入指定的值。
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>
要插入的元素。