I have a string from an xml document:
Is there a way for me to write this string like \"
\"
You need to escape your double quotes..
string blah = ""; OR string blah = @"";
Alternatively you could use single quotes in your tag, which will serve the same purpose.
string blah = "";