ReadOnlyMemory<T>.Slice 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Slice(Int32) |
從指定的記憶體區域形成配量,從指定的位置開始,並繼續進行其結尾。 |
Slice(Int32, Int32) |
從起始於 |
Slice(Int32)
從指定的記憶體區域形成配量,從指定的位置開始,並繼續進行其結尾。
public:
ReadOnlyMemory<T> Slice(int start);
public ReadOnlyMemory<T> Slice (int start);
member this.Slice : int -> ReadOnlyMemory<'T>
Public Function Slice (start As Integer) As ReadOnlyMemory(Of T)
參數
- start
- Int32
要開始此配量的索引。
傳回
表示所需配量的唯讀記憶體區域。
例外狀況
start
小於 0 或大於 Length。
適用於
Slice(Int32, Int32)
從起始於 start
位置且具有 length
個元素的指定記憶體區域形成配量。
public:
ReadOnlyMemory<T> Slice(int start, int length);
public ReadOnlyMemory<T> Slice (int start, int length);
member this.Slice : int * int -> ReadOnlyMemory<'T>
Public Function Slice (start As Integer, length As Integer) As ReadOnlyMemory(Of T)
參數
- start
- Int32
要開始此配量的索引。
- length
- Int32
配量所需的長度。
傳回
表示所需配量的唯讀記憶體區域。
例外狀況
start
、length
或 start
+ length
在目前執行個體的範圍之外。