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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top