In a literal string (@"foo") in C#, backslashes aren't treated as escapes, so doing \" to get a double quote doesn't work. Is there any way to get a double quote in a literal string?
(This understandably doesn't work: string foo = @"this \"word\" is escaped";
)