ReadOnlySpan<T>.Item[Int32] 属性

定义

从指定的从零开始的索引处的只读范围获取项。

public:
 property T& ^ default[int] { T& ^ get(int index); };
public ref readonly T this[int index] { get; }
member this.Item(int) : 'T
Default Public ReadOnly Property Item(index As Integer) As T

参数

index
Int32

要获取的元素的索引(索引从零开始)。

属性值

T

只读范围中的元素。

例外

index 小于零,或者大于或等于 Length

适用于