In Visual C++, I have a
LPWSTR mystring;
which is already defined somewhere else in the code.
I want to create a new LPWSTR containing:
"hello " + mystring + " blablabla" (i.e. a concatenation)
I'm getting mad with such a simple thing (concatenation)! Thanks a lot in advance, I'm lost!
See Question&Answers more detail:os