What does "@" mean before a string?
I saw this notation with paths:
string myfolder = @"C:\Users\";
But also with normal strings.
What does "@" mean before a string?
I saw this notation with paths:
string myfolder = @"C:\Users\";
But also with normal strings.
It means it's a literal string, so won't treat \
as an escape character, for example. This page should help you understand it better.