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
。