Shrikanth
Shrikanth

Reputation: 311

System.Xml.Xpath not found

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.

Upvotes: 4

Views: 1447

Answers (1)

Pedro Lamas
Pedro Lamas

Reputation: 7233

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!)

Upvotes: 4

Related Questions