Reputation: 38228
I cannot find this class in silverlight and searching the internet has been clueless. So what's the equivalent of this class in silverlight ?
Upvotes: 1
Views: 1241
Reputation: 13638
XDocument xmlStories = XDocument.Parse("</a>");
// or
XDocument xmlStories = XDocument.Load(stream);
Based on searches it appears Microsoft wanted a more LINQ friendly implementation which is XDocument.
Upvotes: 2