Can someone explain why people use the @ sign in things like page redirections?
For example;
response.redirect(@"mypage.aspx");
Seems to work exactly the same as;
response.redirect("mypage.aspx");
I would like to know the purpose of the @ sign.