Reading Xml with XmlReader in C#

后端 未结 7 2174
南旧
南旧 2020-11-22 09:02

I\'m trying to read the following Xml document as fast as I can and let additional classes manage the reading of each sub block.


             


        
7条回答
  •  难免孤独
    2020-11-22 09:49

    I am not experiented .But i think XmlReader is unnecessary. It is very hard to use.
    XElement is very easy to use.
    If you need performance ( faster ) you must change file format and use StreamReader and StreamWriter classes.

提交回复
热议问题