有没有办法为多段字符串添加引号

时间:2013-02-26 16:08:36

标签: string escaping

我写了以下这一行:

 string QuoteTest2 = "Benjamin Netnayahu,\"BB\", said that: \"Israel will not fall\"";

这个例子进展顺利,但如果我想写一个包含引号的多段字符串,我该怎么办?

以下示例显示在不切割之前放置'@'..

    string QuoteTest2 = @"Benjamin Netnayahu,\"BB\", said that: \"Israel will not fall\"";

字符串结束,第二个引号和结尾只是给我错误,我该怎么办?

1 个答案:

答案 0 :(得分:0)

使用双引号转义“”

e.g。

string QuoteTest2 = @"Benjamin Netnayahu,""BB"", said that: ""Israel will not fall""";