What does @ preceeding a string literal mean in C#?
Posted
by Rising Star
on Stack Overflow
See other posts from Stack Overflow
or by Rising Star
Published on 2010-04-15T18:15:00Z
Indexed on
2010/04/15
18:23 UTC
Read the original article
Hit count: 229
In C#, what is the difference between
string foo = @"foo string";
and
string foo = "foo string";
?
© Stack Overflow or respective owner