I have an XML response from a public site.
The XML returned seems to miss out some elements and causes the application to crash as the class im u
Var GetCustomers = from c in XDoc.Descendants(ns + "customer")
select new Customer
{
Name = c.Element(ns + "na ...
Go to the complete details ...