Function CSPArray<T>::Get()
Description:
Retrieves a T object from the array by index.
 |
Prototype:
T& Get(unsigned long ulIndex) const;
Arguments:
- unsigned long ulIndex [IN]
The index of the T object to retrieve.
Return value:
Returns a reference to the selected T object.
Examples:
CSPArray<char> A; ... char Value = A.Get( 10 ); A.Get(11) = 0;
See also:
member function Set()
|
|