Using @ infront of literal strings
June 15, 2006 – 8:28 pmUsing @ infront of literal strings lets you do:
instead of:
“C:\\directory\\file.xml”
or
“SELECT field FROM table where field=var”
you can do:
@”C:\directory\file.xml”
and
@”SELECT
field
FROM
table
WHERE
field = var”