I am working with a mix of C# and Managed C++ in my project.

I need to know what the syntax is to overload the [] operator.

My class derrives from System::ArrayList. The documents say that the Item property is an overload to the index subscript [].

What is the syntax in C++ to define this in my derrived class? I can't find anything on this and I can not see any op_... to use for this.

Anyone know how to do it?