ImmutableArray<T>.IImmutableList<T>.InsertRange 方法

定义

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

 virtual System::Collections::Immutable::IImmutableList<T> ^ System.Collections.Immutable.IImmutableList<T>.InsertRange(int index, System::Collections::Generic::IEnumerable<T> ^ items) = System::Collections::Immutable::IImmutableList<T>::InsertRange;
System.Collections.Immutable.IImmutableList<T> IImmutableList<T>.InsertRange (int index, System.Collections.Generic.IEnumerable<T> items);
abstract member System.Collections.Immutable.IImmutableList<T>.InsertRange : int * seq<'T> -> System.Collections.Immutable.IImmutableList<'T>
override this.System.Collections.Immutable.IImmutableList<T>.InsertRange : int * seq<'T> -> System.Collections.Immutable.IImmutableList<'T>
Function InsertRange (index As Integer, items As IEnumerable(Of T)) As IImmutableList(Of T) Implements IImmutableList(Of T).InsertRange

参数

index
Int32

插入值的索引位置。

items
IEnumerable<T>

要插入的元素。

返回

已插入指定值的新数组。

实现

注解

此成员是显式接口成员的实现。 它只能在 ImmutableArray<T> 实例被强制转换为 IImmutableList<T> 接口时使用。

适用于