I'm about to read some XML (who isn't :-)). This time however it's a lot of data: about 30,000 records with 5 properties, all in one file.
Till now I've always read that the XmlTextReader
is the fastest way to read XML data, but now there also is the (nice syntax of) LINQ to XML.
Does anybody know any performance issues, or that there aren't any, with LINQ to XML?
Michel