Strings are entered in C# @-string format(also called verbatim string), which in code looks like: @"string". This means it's ready for copying and pasting into your code.
In @ quoted strings, a single doublequote character must be doubled! Other than that, you don't have to double escape any character.