I\'m trying to read the following Xml document as fast as I can and let additional classes manage the reading of each sub block.
XmlDataDocument xmldoc = new XmlDataDocument();
XmlNodeList xmlnode ;
int i = 0;
string str = null;
FileStream fs = new FileStream("product.xml", FileMode.Open, FileAccess.Read);
xmldoc.Load(fs);
xmlnode = xmldoc.GetElementsByTagName("Product");
You can loop through xmlnode and get the data...... C# XML Reader