Posted on: 6/13/2014 5:51:37 PM | Views : 575

I have a Customer class and use an XML response to fill the class with some data as below (ns is Namespace)
Dim GetCustomers = From c As XElement In XDoc.Descendants(ns + "customer")               Select New Customer With {.Name = c.Element(ns + "name"),                                         .Gender = CStr(c.Element(ns + "gender")),              ...

Go to the complete details ...