how to concatenate two _T strings?
开发者_JAVA百科How to concatenate these strings?
_T("http://www.google.com/") + _T("intl/en/privacy.html")
You can convert one of them to a CString
, something like: CString(_T("http://www.google.com/")) + _T("intl/en/privacy.html");
精彩评论