I am programing in MFC .NET, and I am encountering a problum in adding the symbol '\' to a CString object. This is naturaly due to the fact that the symbol is used for such things as \n \t ect.
How do I go about it?
say I have the following code:
CString word="hello world";
word+="\"; // or "'\'" doesn't work...
Cheers,
Hike