System::Array::operator[] method
Array::operator method
Returns an item at the specified index.
UnderlyingType & System::Array<T>::operator[](int index)
Parameter | Type | Description |
---|---|---|
index | int | Index of the item to return |
ReturnValue
A reference to an item at specified position
See Also
- Typedef UnderlyingType
- Class Array
- Namespace System
- Library Aspose.PUB for C++
Array::operator const method
Returns an item at the specified index.
UnderlyingType const & System::Array<T>::operator[](int index) const
Parameter | Type | Description |
---|---|---|
index | int | Index of the item to return |
ReturnValue
A const reference to an item at the specified position
See Also
- Typedef UnderlyingType
- Class Array
- Namespace System
- Library Aspose.PUB for C++