How to parse a xml file in c#?

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

Guest

hi,all
Just got a question. How to parse a xml file in c#? Use xmlReader or DCOM or
there is some better way?

Thanks and have a great day!
 
How about the classes in the System.XML namespace (XMLReader, NodeReader,
XMLDocument, XMLDataDocument, etc.)? That's what they are there for.

There is absolutely no reason to get DCOM involved (I'm not even sure why or
how you would).
 
Back
Top