How do you deserialize a collection with child collections?
- by Stuart Helwig
I have a collection of custom entity objects one property of which is an ArrayList of byte arrays.
The custom entity is serializable and the collection property is marked with the following attributes: [XmlArray("Images"), XmlArrayItem("Image",typeof(byte[]))]
So I serialize a collection of these custom entities and pass them to a web service, as…