XML => Object stored in memory?

  • Thread starter Thread starter Hillbilly
  • Start date Start date
H

Hillbilly

Seeking insight regarding which class/control/object is optimal to write XML
into and append with additional XML while the object is in memory? The XML
must then be saved to disk and sorting by node(s) would be a real nice gift
though not necessarily required.
 
Hillbilly said:
Seeking insight regarding which class/control/object is optimal to write
XML into and append with additional XML while the object is in memory?
The XML must then be saved to disk and sorting by node(s) would be a
real nice gift though not necessarily required.
XmlDocument class should be helpfull.
Its in the System.Xml namespace.
DH
 
Hillbilly said:
Seeking insight regarding which class/control/object is optimal to write
XML into and append with additional XML while the object is in memory? The
XML must then be saved to disk and sorting by node(s) would be a real nice
gift though not necessarily required.

If you are using .NET 3.5 consider XDocument (System.Xml.Linq)
Node creation is IMO easier and the coding of a sort will be no problem
using a Linq query.
 
Back
Top