ImmutableArray<T>.Slice(Int32, Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从指定长度的指定索引处开始,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
开始。