Adding Qoutation mark " to CString

Tech-Archive recommends: Fix windows errors by optimizing your registry



Hi,
I am not able to add " to my Cstring. I want a string like temp"12
For example
CString s = "temp\"12"; this gives temp12
CString s = "temp\\"12"; - this gives compile error.

Only option is to work like this
Cstring s;
s = "temp";
s = s + "\\";
s = s + "12";

is there any other way to put qoutation marks directly in a string?
Regards,
Anubhav

.