I have to parse large XML file in C#. I use LINQ-to-XML. I have a structure like
<root>
<node></node>
<node></node>
</root>
I would like use XmlReader to loop on each node and use LINQ-to-XML to get each node and work on it ?
So I have only in memory the current node.
You can do something like that: