Possible Duplicate:
what does “@” means in c#
What does the sign @ mean in the following:
Class.Field = @”your text here”;
I came across this in a piece of code, the compiler does not seem to complain… I’ve searched around to no avail…
What does the @ mean?
It indicates a verbatim string literal. You can use it so escapes aren’t treated as such:
Becomes: