C# XML Support

  • Thread starter Thread starter David
  • Start date Start date
D

David

Hi,

I'm a newcomer to C# and I just wondered what the easiest way would be to
read, write and modify an XML document from my C# program.

If you could point me to a few good resources, it would be much appreciated.

Thanks,
David.
 
Well, if you need to be able to do all those operations at the same time
(including modify), you only option would really be to use the XmlDocument
and manipulate the tree that way.

If you only need to read or write, then the easiest might be to us the
XmlTextReader or XmlTextWriter.
 
Back
Top