Backslash
// The filename will be c:\myfile.txt in both cases
string filename = "c:\\myfile.txt";
string filename = @"c:\myfile.txt";
The second example uses a verbatim string literal, which doesn't treat the backslash as an escape character.
Quotes
string text = "\&...