CString::operator +=
This concatenation operator adds characters onto the end of this string. The operator accepts another CString object, a character pointer, or a single character. You should be aware that memory exceptions may occur whenever you use this concatenation operator because new storage may be allocated for characters added to this CString object.
string
Specifies a CString to concatenate to this string.
ch
Specifies a character to concatenate to this string.
lpsz
Specifies a pointer to a null-terminated string to concatenate to this string.