ReadOnlySpan<T>.Item[Int32] 属性
定义
从指定的从零开始的索引处的只读范围获取项。Gets an item from the read-only span at the specified zero-based index.
public:
property T& ^ default[int] { T& ^ get(int index); };
public T this[int index] { get; }
member this.Item(int) : 'T
Default Public ReadOnly Property Item(index As Integer) As T
参数
- index
- Int32
要获取的元素的索引(索引从零开始)。The zero-based index of the element to get.
属性值
- T
只读范围内的元素。The element from the read-only span.