CString本质上就是TCHAR*,可以直接赋值不用转换。CString Merge( CString dest , const TCHAR* add ){CString temp = add;dest += temp;return temp;}