CString - JMNCO Home Page
String Concatenation One of the very convenient features of CString is the ability to concatenate two strings. For example if we have CString gray("Gray"); CString cat("Cat"); CString graycat = gray + cat; is a lot nicer than having to do something like: ...