Function CSPArray<T>::CSPBuffer()
Description:
 |
Prototype:
CSPBuffer(unsigned long ulSize);
Arguments:
- unsigned long ulSize [IN]
The initial size of the array.
Return value:
No value is returned.
Examples:
CSPArray<char> A1( 100 ); CSPArray<char> A2; A2.SetSize( 100 );
// Both arrays have the same size
See also:
member functions GetSize(), SetSize(), Resize(), Grow(), Shrink(), Empty()
|
|