I need to do the following C# code in C++ (if possible). I have to const a long string with lots of freaking quotes and other stuff in it.
const String _lit
There is no equivalent of C#'s "@" in C++. The only way to achieve it is to escape the string properly:
const char *_literal = "I can use \"quotes\" inside here";