xml 元素未正确缩进
我已经使用 C# 创建了一个 xml 文件,但主要问题是它没有缩进
我使用了 xmldocument.preserverwhitespace=true;
i have created a xml file using c# but the main problem is that it is not indented
i have used xmldocument.preserverwhitespace=true;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用的是 XmlTextWriter,则可以设置 Formatting 属性:
If you are using an XmlTextWriter, you can set the Formatting property :
强烈建议您切换到基于 XDocument 的新 XML 文档模型。您可以在其上使用 LINQ to XML,并且与旧的 XMLDocument 模型相比,创建、更改和搜索 XML 更加容易。新的 XDocument 模型可以将代码大小减少一半以上。
Strongly suggest you switch over to the new XML document model, based on XDocument. You can use LINQ to XML on it, and it's much easier to create, alter, and search XML than it ever wasin the old XMLDocument model. The new XDocument model can cut your code size by over half.