Consider the following line:
readonly private string TARGET_BTN_IMG_URL = @"\\ad1-sunglim\Test\";
In this line, why does @ need to be attached?
|
It denotes a literal string, in which the '\' character does not indicate an escape sequence. |
|||||||
|
|
@ tells C# to treat that as a
is an error because
To make it clearer, you can use a literal string, which does not recognize \ as a special character. Hence:
is perfectly okay. EDIT: MSDN provides these examples:
|
|||||||||||
|
|
because you string contains escape sequence "\". in order to tell compiler not to treat "\" as escape sequence you have to use "@". |
|||
|
|
x = @"abc";– nickf Apr 14 '10 at 23:52