I have very huge XML files that i have to format. The files can be up to 10GB big.
I couldnt find any solution that doesnt include XDocument. XDocument loads the whole file into the RAM which obviously will be problematic with a 10GB file. Especially in 32 bit systems
Writing an XML formatter from scratch that works with a stream kind of feels like reinventing the wheel to me. I cant imagine me being the first person who had to work with something like this. If possible I would like to use an existing solution.
Does anyone know anything i can work with other than writing everything myself?
Thank you
- .Net Framework 4.8
- C#8