CollectionExtensions.InsertRange<T> 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將範圍 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>範圍。
例外狀況
list
為 null
。
index
小於 0 或大於 list
的 Count。