The title really says it all, but when I use the @ character to ignore escapes in a string literal @"Like This\", the \" is interpreted as a quote character belonging to the string rather than the terminating quote.

link|improve this question

50% accept rate
feedback

2 Answers

up vote 3 down vote accepted

That's an issue with google-code-prettify, which Stack Overflow uses, and is not something the Stack Overflow team are likely to remedy.

That said, google-code-prettify is open-source - so feel free to go fix it!

link|improve this answer
feedback

Testing

string test1 = @"Like This\";
string test2 = "Like This\\";
link|improve this answer
feedback

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged