I use @ symbol with local path only, but when do I use @ exactly?
|
You use @ before strings to avoid having to escape special characters. This from the MSDN:
|
|||||||||||||||||
|
|
AFAIK, You can use @ at any place where you don't want to let the default meaning of the thing persist. For example, @class will make class an identifier. @bool will make bool an identifier instead of a keyword. You know the usage of @ before strings. It is used to indicate that take all the text of the string literally and don't treat any character in the string specially. Edit: An yes, another thing to this is that See this Link for more details. |
||||
|
|
Verbatim StringsAn You'll have seen this syntax used with file paths, etc. because it's convenient to have the compiler ignore the backslashes in the path, rather than having to double-escape them, e.g.
is a little easier to read than
Reserved WordsYou can also prefix identifiers with |
|||
|
|
|
You can prefix a string with the @ sign to avoid having to type 2 backslashes to mean one backslash. This is why it is often used for local path because it saves some typing, and simplifies what you are looking at when you read it later. When you have a bunch of double quotes and other escape characters, aka special characters - that's when you want the @ sign. When you use the @ sign, make sure to put just one backslash when you mean backslash. When using the @ you want to use the double quote character, put two double quotes instead of backslash, double quote.
vs
here is another example:
vs.
|
|||
|
|
|
If you want to use keywords as variable names
|
|||
|
