user310291
user310291

Reputation: 38228

Why System.Xml doesn't contain XmlDocument in Silverlight?

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

Answers (1)

Andrew T Finnell
Andrew T Finnell

Reputation: 13638

XDocument -> Example

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

Related Questions