System::Array::operator[] 方法

Array::operator method

返回指定索引处的项。

UnderlyingType & System::Array<T>::operator[](int index)
参数类型描述
索引int要返回的项的索引

ReturnValue

指定位置处项的引用

另见

Array::operator const method

返回指定索引处的项。

UnderlyingType const  & System::Array<T>::operator[](int index) const
参数类型描述
索引int要返回的项的索引

ReturnValue

指定位置处项的 const 引用

另见