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#?
|
|
|
|
|
|
|
Try this:
|
||||||
|
|
|
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 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 |
||
|