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
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.