Jump to content

Reading XML

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
2 replies to this topic

#1
Nightracer

Nightracer

    Programmer

  • Members
  • PipPipPipPip
  • 131 posts
I would like to parse XML from the web. Are there any .NET librarys that do this for me already or do I need to create my own parser?

#2
brackett

brackett

    Programmer

  • Members
  • PipPipPipPip
  • 192 posts
The System.Xml namespace has really good support for parsing XML. If it's a web service, you can usually add a reference to it and get an object model in return.

#3
Crane

Crane

    Programming Expert

  • Members
  • PipPipPipPipPipPip
  • 398 posts
Yes, this namespace is really all you need to parse XML from C#. Need any help using it?