Posted on: 10/23/2014 8:09:10 PM | Views : 450

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 ...