-1

i am trying to use xmlreader and all of those, but i do not know how to reference or import them. i am beginner so please be gentle. thanks!

Alex Gordon
  • 57,446
  • 287
  • 670
  • 1,062

1 Answers1

3

If you are using Visual Studio 2008 then you should really look at XML Literals. It allows you to work with XML directly in your code and has built-in query support.

Example

Dim x = <xml><p>hello</p><p>world</p></xml>
JaredPar
  • 733,204
  • 149
  • 1,241
  • 1,454