List<T>.Slice(Int32, Int32) 方法

定义

在源 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)

参数

start
Int32

范围开始处的从零开始的 List<T> 索引。

length
Int32

范围的长度。

返回

List<T> 中的元素范围的浅表副本复制。

例外

start 小于 0。

length 小于 0。

startlength 不表示 List<T> 中元素的有效范围。

适用于