parsing XML file with C#

  • Thread starter Thread starter sumaira ali
  • Start date Start date
S

sumaira ali

does anyone know of a good tutorial about using C# to create and read
from XML files ?
thanks
sumaira
 
I don't know any tutorials, but you can load the xml document into a
XPathDocument and parse it with an XPathNavigator and XPathNodeIterator.
 
..Net framekwork comes with lot of examples. look for a file called
starthere.html in your .net framework install folder. That will take you
to the quick start examples.

They are very good.

regards,
Abhishek
 
Back
Top