linq-to-xml 和回车符
使用 xml 处理 xml 格式中的回车符的最佳方法是什么?
<myxml>
<mydata>
</mydata>
</myxml>
<myxml><mydata></mydata></myxml>
What is the best what to handle carriage returns in xml formatting with xml?
<myxml>
<mydata>
</mydata>
</myxml>
<myxml><mydata></mydata></myxml>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这没有什么区别。
如果您希望 XML 更小,请不要添加换行符。
如果您希望它易于人类阅读,请添加换行符和缩进。
默认情况下,LINQ to XML 将使用制表符和换行符格式化 XML;为了防止这种情况,请调用
element.ToString(SaveOptions.DisableFormatting)
It doesn't make any difference.
If you want the XML to be smaller, don't add newlines.
If you want it to be human-readable, add newlines and indentation.
LINQ to XML will format the XML with tabs and newlines by default; to prevent this, call
element.ToString(SaveOptions.DisableFormatting)