1

我写了以下行:

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

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

下面的例子表明,把'@'放在前面并没有削减它..

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

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

4

1 回答 1

0

使用双引号转义 ""

例如

string QuoteTest2 = @"Benjamin Netnayahu,""BB"", said that: ""Israel will not fall""";
于 2013-02-26T16:13:53.097 回答