Linq and XML string
What do you do when a server returns to you an XML string? How do you parse or query this string? There are 2 main ways that you can solve this problem. Using XDocoument or using XElement. 1. The XDocument way 1.1 To Load the string private XDocument GetXDocument(string xmlString) …