Memory<T>.Slice 方法

定义

重载

Slice(Int32)

从指定索引处开始的当前内存外形成切片。

Slice(Int32, Int32)

从指定长度的指定索引处开始,在当前内存外形成切片。

Slice(Int32)

Source:
Memory.cs
Source:
Memory.cs
Source:
Memory.cs

从指定索引处开始的当前内存外形成切片。

public:
 Memory<T> Slice(int start);
public Memory<T> Slice (int start);
member this.Slice : int -> Memory<'T>
Public Function Slice (start As Integer) As Memory(Of T)

参数

start
Int32

开始切片处的索引。

返回

包含当前实例的所有元素(从 start 到实例末尾)的对象。

例外

start 小于零或大于 Length

适用于

Slice(Int32, Int32)

Source:
Memory.cs
Source:
Memory.cs
Source:
Memory.cs

从指定长度的指定索引处开始,在当前内存外形成切片。

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

参数

start
Int32

开始切片处的索引。

length
Int32

要包括在切片中的元素数。

返回

包含当前实例的 length 元素(从 start 开始)的对象。

例外

start 小于零或大于 Length

- 或 -

length 大于 Length - start

适用于