XMl read/write/update/append

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hey all

I'm looking for the fastest way to read/write/update/append xml files. Fairly complicated, large scale files

It needs to be scalable, but very fast

Any idea's

Thanks

Jonny
 
you can use System.XML namespace

reading : XMLTextReader / XMLReader
writing : XMLTextWriter/XMLWriter
update : query it using XPathNavigator

also XPathDocument : it stores XML types from the XML schema instead of
untyped strings which greatly reduces the memory storage and makes it
perform better.

Av.
 
Back
Top