linq-to-xml 和回车符

发布于 2024-09-03 09:30:52 字数 181 浏览 0 评论 0原文

使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

热血少△年 2024-09-10 09:30:52

这没有什么区别。

如果您希望 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)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文