how to load a XDocument when the xml is in a string variable? [duplicate]
How do I load开发者_如何学JAVA an XDocument when the xml is in a string variable?
XDocument.Parse(yourvariable)
http://msdn.microsoft.com/en-us/library/system.xml.linq.xdocument.parse.aspx
精彩评论