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

定义

从指定长度的指定索引处开始,Forms当前ImmutableArray<T>的切片。

public:
 System::Collections::Immutable::ImmutableArray<T> Slice(int start, int length);
public System.Collections.Immutable.ImmutableArray<T> Slice (int start, int length);
member this.Slice : int * int -> System.Collections.Immutable.ImmutableArray<'T>
Public Function Slice (start As Integer, length As Integer) As ImmutableArray(Of T)

参数

start
Int32

开始切片处的索引。

length
Int32

切片所需的长度。

返回

一个 ImmutableArray<T> ,它 length 由当前 ImmutableArray<T>中的元素组成,从 start开始。

适用于