Function CSPArray<T>::Set()
Description:
Sets a new value for the T object with the specified index.
 |
Prototype:
void Set(unsigned long ulIndex, const T& Value);
Arguments:
- unsigned long ulIndex [IN]
The index of the T object to set its value.
- const T& Value [IN]
The new value.
Return value:
No return value (void).
See also:
member function Get()
|
|