mshelp.be — Serializing and deserializing multiple generic collections using DataContractSerializer Posted by Sven on June 20th 2009 to WCF The DataContractSerializer class is the successor of the XmlSerializer class. Introduced together with WCF. This one is also being used by WCF for serialization by default. You can of course always switch back to the good old XmlSerializer if you want to. Anyway, if you wanted to serialize a collection with the XmlSerializer you had to use the XmlArrayAttribute. With the...
original link