本文介绍了一种读取XML文件的方法,以便CDATA部分保留在XmlDocument中的属性?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用XmlDocument.LoadXml()来读取包含CDATA部分的XML文件。除了CDATA部分变成XML节点而不是属性之外,它运行良好。

有没有办法读取XML文件,以便CDATA部分仍然是XmlDocument中的属性?

I'm using XmlDocument.LoadXml() to read an XML file that contains CDATA sections. It works well except that the CDATA sections get turned into XML nodes, instead of attributes.

Is there a way to read an XML file so that the CDATA sections remain attributes in the XmlDocument?

推荐答案


这篇关于一种读取XML文件的方法,以便CDATA部分保留在XmlDocument中的属性?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 14:21