C# and XML

  • Thread starter Thread starter jorg
  • Start date Start date
J

jorg

Hi ..
How Can I read the information if they are in XML
format , and how to extract the Atrbute Values ...

How to do that by using the C# code ..

thanks
 
Use the XmlTextReader to read data from an Xml file
you have a ReadElementString method to read the value of
an element and a GetAttribute method to read the attribute

Hope this helps

Regards,

tribal
 
Back
Top