Tag Archives: XML
0
Reading a RSS feed with the C# XmlReader
Posted on 01. Feb, 2010 by Wim Haanstra.
Today I needed to parse a LARGE (1.9GB) XML file and extract some information from it. Loading it in a XmlDocument (my favorite .NET way of handling XML) wasn’t really a possibility, because that would cause Out of Memory errors the minute I would try it.
I am using a XmlReader for this and I noticed that there arent really many usable examples on the internet about this, so here is just a small example I created to show how you could read a RSS feed.
Sample after the break… (more…)
Continue Reading