XmlDocument 类正在删除格式、c#、.NET
我想知道是否有人知道如何阻止 xmldocument.Save() 重新格式化文档。
这并不是说该文档的 XML 格式不正确,而是我正在使用的特定文档有大量空白以及类似的内容,在保存时,这些内容都将被删除。
i was wondering if anyone knows how to stop xmldocument.Save() from reformatting the document.
Its not that the document is not formatted correctly with respect to XML, the particular document i am working with has lots of white space and things like that which - upon save - is all being removed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将 PreserveWhiteSpace 属性设置为
true
在保存文档之前。Set the PreserveWhiteSpace property to
true
before you save the document.将 PreserveWhiteSpace 设置为 true
set PreserveWhiteSpace to true