List<T>.Slice(Int32, Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
為來源 List<T> 中的項目範圍建立淺層複本。
public:
System::Collections::Generic::List<T> ^ Slice(int start, int length);
public System.Collections.Generic.List<T> Slice (int start, int length);
member this.Slice : int * int -> System.Collections.Generic.List<'T>
Public Function Slice (start As Integer, length As Integer) As List(Of T)
參數
- length
- Int32
範圍的長度。
傳回
來源 List<T> 中項目範圍的淺層複本。
例外狀況
start
和 length
不代表 List<T> 中項目的有效範圍。