CollectionExtensions.InsertRange<T> 方法

定义

将范围元素插入指定索引处的 。List<T>

public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static void InsertRange(System::Collections::Generic::List<T> ^ list, int index, ReadOnlySpan<T> source);
public static void InsertRange<T> (this System.Collections.Generic.List<T> list, int index, ReadOnlySpan<T> source);
static member InsertRange : System.Collections.Generic.List<'T> * int * ReadOnlySpan<'T> -> unit
<Extension()>
Public Sub InsertRange(Of T) (list As List(Of T), index As Integer, source As ReadOnlySpan(Of T))

类型参数

T

列表中元素的类型。

参数

list
List<T>

元素应插入到的列表。

index
Int32

应在此处插入新元素的从零开始的索引。

source
ReadOnlySpan<T>

应将其元素添加到 的 List<T>跨度。

例外

listnull

index 小于 0 或大于 listCount

适用于