StringBuffer::+=

StringBuffer::+=
void operator +=(const String& src);
void operator +=(const char* psrc);
void operator +=(const wchar_t* psrc);
void operator +=(char ch);
Description

+= operator returns a new String which is a concatenation of the original string with the parameter.

Parameters
Parameters 
Description 
const String& src 
String to be concatenated. 
const char* psrc 
Pointer to wide character string. 
char ch 
Character to be concatenated to the string.