TYPE operator[](
int index) const;
TYPE& operator[](
int index);
Parameter
index
The index of the element in the array you want to access.
Comments
These operators are equivalent to the Items method. They allow the array to be used like C arrays in code.