我有一个字符串变量,例如:
string title = string.empty;
我必须在双引号内的 div 内显示传递给它的任何内容。我写了这样的东西:
... ... <div>"+ title +@"</div> ... ...
如何在此处添加双引号?这样它就会显示如下:
"How to add double quotes"
您需要通过将它们加倍(逐字字符串文字)来逃避它们:
string str = @"""How to add doublequotes""";
或者使用普通的字符串文字,您可以使用\:
\
string str = "\"How to add doublequotes\"";