[quoted text, click to view] "David Thielen" <thielen@nospam.nospam> wrote in message news:BEA51BCB-B200-4104-B061-CA32FECD9DFD@microsoft.com...
> If I need to read an XML file - basically the SAX approach where I just need
> each node in order - one pass, read-only - what is the best way to do this.
Yes, if your only requirement is a firehose forward reader, then XmlReader
is the way to go (get a concrete implementation of the abstract XmlReader
with either XmlReader.Create( ) and a suitable XmlReaderSettings profile
in .NET 2.0, or XmlTextReader is suitable for most cases in .NET 1.x.)
Derek Harmon