vote up 0 vote down star

If I write something like this:

string s = @"...."......";

it doesn't work.


If I try this:

string s = @"...\".....";

it doesn't work either.

How can I add a " character to a multi line string declaration in C#?

flag

47% accept rate

3 Answers

vote up 19 vote down check

Try this:

string s = @"..."".....";
link|flag
Hm, compiler does not complain now. :) But how does it work? Double "" has some special meaning when inside a string declaration? – User Mar 23 at 15:10
When dealing with literal strings (the ones prefixed with "@") then you use the double-quote to escape itself instead of a backslash. – mquander Mar 23 at 15:11
One learn all the time. Thank you. :) – User Mar 23 at 15:14
vote up 2 vote down

The double character usage also works with '{' and '}' characters when using string.Format and you want to include a literal instance of either rather than indicate a parameter argument, for example:

string jsString = string.Format("var jsonUrls = {{firstUrl: '{0}', secondUrl: '{1}'}};", firstUrl, secondUrl);
link|flag
I was just thinking about other characters. You guessed it. Thank you. :) – User Mar 23 at 15:32
vote up 1 vote down

string s = "...\"....."; should work

the @ disables escapes so if you want to use \" then no @ symbol

Personely i think you should go with

string s = string.format("{0}\"{1},"something","something else"); it makes it easeir in the long run

link|flag
There is no need to format anything. Was just a multiline SQL query in code which I was trying to fix. – User Mar 23 at 15:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.