That is a quoted string literal.
The advantage of @-quoting is that escape sequences are not processed,
which makes it easy to write, for example, a fully qualified file name:
@"c:\Docs\Source\a.txt" // rather than "c:\\Docs\\Source\\a.txt"
(
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/csref/html
/vclrfString.asp)
The reason you don't see a difference in your example is because your
string does not have any escape sequences.
Cheers,
Christian T. [MSFT]
Visual Studio Update Team
- Please do not reply to this email directly. This email is for newsgroup
purposes only.
=========================================================================
This posting is provided "AS IS" with no warranties, and confers no
rights. Use of included script samples are subject to the terms specified
at
http://www.microsoft.com/info/cpyright.htm
Note: For the benefit of the community-at-large, all responses to this
message are best directed to the newsgroup/thread from which
they originated.
=========================================================================
--------------------