当没有数据时强制 XDocument.ToString() 包含结束标记
我有一个看起来像这样的 XDocument:
XDocument outputDocument = new XDocument(
new XElement("Document",
new XElement("Stuff")
)
);
当我调用
outputDocument.ToString()
输出时:
<Document>
<Stuff />
</Document>
但我希望它看起来像这样:
<Document>
<Stuff>
</Stuff>
</Document>
我意识到第一个是正确的,但我需要以这种方式输出它。有什么建议吗?
I have a XDocument that looks like this:
XDocument outputDocument = new XDocument(
new XElement("Document",
new XElement("Stuff")
)
);
That when I call
outputDocument.ToString()
Outputs to this:
<Document>
<Stuff />
</Document>
But I want it to look like this:
<Document>
<Stuff>
</Stuff>
</Document>
I realize the first one is correct, but I am required to output it this way. Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将每个空
XElement
的Value
属性专门设置为空字符串。Set the
Value
property of each emptyXElement
specifically to an empty string.当存在空标签时使用 XNode.DeepEquals 会出现问题,这是比较 XML 文档中所有 XML 元素的另一种方法(即使 XML 结束标签不同,这也应该有效)
an issue using the XNode.DeepEquals when there is an empty tags, another way to compare all XML elements from XML documents (this should works even if the XML closing tags are different)