Sometimes I find that many people use @string for locate a directory than use string even I though that they are same. for example : I have variable that called direct
string direct = "C:\\Users";
And then,I type :
System.IO.Directory.CreateDirectory(@direct);
I think it's same with
System.IO.Directory.CreateDirectory(direct);
But,what's difference between @direct and direct?