ReadOnlySpan<T>.Item[Int32] 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从指定的从零开始的索引处的只读范围获取项。
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。