4

I tried to include System.Xml.Xpath in C#.NET to do wp7 programs for parsing XML. I have added the reference System.Xml but Xpath is not found.

McGarnagle
  • 101,349
  • 31
  • 229
  • 260
Shrikanth
  • 301
  • 4
  • 13
  • WP7 has a restricted subset of the BCL libraries, in order to conserve space and memory. This is one of those that is excluded. – Oded Apr 08 '12 at 19:31

1 Answers1

4

There is no System.Xml.Xpath support in Windows Phone, you'll have to use an external assembly that does support XPath, or use Linq to XML (quite recommended!)

Pedro Lamas
  • 7,185
  • 4
  • 27
  • 35