hi,

when I read a file, ReadOuterXml() returns sometimes an empty string and somestimes not. does anyone have a clue? here“s a part of the code, i hope i helps:
Code:
//  used to parse wordML Tables
// "prop" is a object with holdes the document properties and other stuff

this.table.Seek(0, SeekOrigin.Begin);
XmlTextReader reader = new XmlTextReader(table, XmlNodeType.Element, prop.parserContext);
...