|
by Gus Perez via aWorkBlogByGus on 8/11/2005 6:58:00 AM
This one came up today in an internal discussion alias and reminded me of how many times I've seen people get stumped on this one and end up working around it. A lot of users have used verbatim string literals as they ease writing multi-line strings literals or for specifying paths and not having to escape the backslashes (as Andrew pointed out in the comments for this post). Here's an example:
string s = @"First line
... [ read more ]
|