Possible Duplicate:
What's the @ in front of a string in C#?
why do we use @ to replace \ with another string using string.replace(@"\","$$")
i'm using C# windows application
The @ in front of a string literal makes it a verbatim string literal, so the backslash \ does not need to be doubled. You can use "\\" instead of @"\" for the same effect.
Because if you didn't, you'd have to escape \ with \\
@ is used to what's called verbatim strings
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With