Read large XML file in .NET (C#)
This article shows how you can read nested and complex large XML file using XmlReader. few benefits of using XmlReader XmlReader reads data in a forward-only and read-only fashion. That’s why it is faster than loading XML in memory and read node by node. XmlReader… Read More »Read large XML file in .NET (C#)