使用 Linq to XML,是否可以存储“”在属性中?
使用 Linq to XML,是否可以存储“”在一个属性中。
因此,如果我查看 xml 源代码,它将显示 "
到目前为止,我尝试过的是,
new XAttribute("AttribName", "'")
但这只是存储 '
如果我尝试
new XAttribute("AttribName", """)
那么它会存储 "
Using Linq to XML, is it possible to store " in an attribute.
So if I look at the xml source, it will show "
What I've tried so far, is
new XAttribute("AttribName", "'")
But that just stores '
If I try
new XAttribute("AttribName", """)
Then it will store "
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的第一个版本是撇号,而不是引号。试试这个:
Your first version is an apostrophe, not a quotation mark. Try this: