It means that special chars don't need to be escaped, since you informed the compiler to expect special characters, and to ignore them. A common use case might be to specify a connection string:
string sqlServer = @"SERVER01\SQL";
This is perfectly valid, as opposed to in normal use where the backslash would be considered an escape character.