public: __property DataItem* get_Item( int index ); public: __property void set_Item( int index, DataItem* value );
Parameters
- index
- The zero-based index in the collection to get or set.
This method implements a standard collection operation. It is one of the principle methods you will use to read or change elements in the collection. You can read or modify any element in the collection with this method.
You can indicate the element you are interested in with an integer. The index should be a zero-based index to the element in the collection.