CString 와 Cstringarray
https://msdn.microsoft.com/en-us/library/aa315043(v=vs.60).aspx
CStrings 관련
Public Methods
Name | Description |
---|---|
Adds an element to the end of the array; grows the array if necessary. | |
Appends another array to the array; grows the array if necessary. | |
Copies another array to the array; grows the array if necessary. | |
Returns a temporary reference to the element pointer within the array. | |
Frees all unused memory above the current upper bound. | |
Returns the value at a given index. | |
Gets the number of elements in this array. | |
Allows access to elements in the array. Can be NULL. | |
Gets the number of elements in this array. | |
Returns the largest valid index. | |
Inserts an element (or all the elements in another array) at a specified index. | |
Determines if the array is empty. | |
Removes all the elements from this array. | |
Removes an element at a specific index. | |
Sets the value for a given index; array not allowed to grow. | |
Sets the value for a given index; grows the array if necessary. | |
Sets the number of elements to be contained in this array. |