Possible Duplicate:
What's the @ in front of a string in C#?
This is something I have questioned for a long time but never bothered to figure out. When I download third party libraries I have often seen string assignments using a @
symbol before the string.
string myString = @"Some text";
But there seems to be absolutely no difference if I simply do
string myString = "Some text";
So what is the @
doing?