Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个字符串生成器对象,我正在向它附加一些值,我需要添加的值之一是:
<Literal datatypeIRI="&rdf;PlainLiteral">
但是当我将其复制粘贴并将其添加到 stringbuilder 对象时,它会给出错误并认为 sring 参数尚未完成...我也尝试在它的开头放一个“@”,但仍然是同样的问题.
"字符需要转义。对于普通字符串,使用\",对于 @ 字符串使用""。
"
\"
""
例如"<Literal datatypeIRI=\"&rdf;PlainLiteral\">"
"<Literal datatypeIRI=\"&rdf;PlainLiteral\">"
您需要转义嵌入式":
或者:
@"<Literal datatypeIRI=""&rdf;PlainLiteral"">"