开发者

how to concatenate two _T strings?

开发者 https://www.devze.com 2023-01-24 03:47 出处:网络
开发者_JAVA百科How to concatenate these strings? _T(\"http://www.google.com/\") + _T(\"intl/en/privacy.html\")

开发者_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");

0

精彩评论

暂无评论...
验证码 换一张
取 消