show/hide this revision's text 4 Minor edit: grammar/spelling/case/punctation/etc.

The @ tells the compiler to ignore any escape characters in a string.

just

Just wanted to clarify this one... it doesn't tell it to ignore the escape characters, it actually tells the compiler to interpret the string as a literal.

if

If you have

string s = @"cat
             dog
             fish"

it will actually print out as (note that it even includes the whitespace used for indentation)indentation):

cat
             dog
             fish
show/hide this revision's text 3 added indentation whitespace

The @ tells the compiler to ignore any escape characters in a string.

just wanted to clarify this one... it doesn't tell it to ignore the escape characters, it actually tells the compiler to interpret the string as a literal.

if you have

string s = @"cat
             dog
             fish"

it will actually print out as (note that it even includes the whitespace used for indentation)

cat
             dog
             fish
show/hide this revision's text 2 fixed spelling

The @ tells the compiler to ignore any escape characters in a string.

just wanted to clarify this one... it doesn't tell it to ignore the escape characters, it actually tells the compiler to interperate interpret the string as a literal.

if you have

string s = @"cat
             dog
             fish"

it will actually print out as

cat
dog
fish

    Post Made Community Wiki by Community
show/hide this revision's text 1