The following xml is a result of serializing an ArrayList of Asset objets
<ArrayOfAsset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Asset>
<name>bill</name>
<type>perosn</type>
</Asset>
<Asset>
<name>bill</name>
<type>perosn</type>
</Asset>
</ArrayOfAsset>
I can deserialize this with the default C# deserializer no problem. If my root element changes from ArrayOfAsset to assets, my deserializer blows up. How can I make my deserializer aware of this change.
Here is my deserialization code:
StreamReader sr = new StreamReader("c:\\assest.xml");
string r = sr.ReadToEnd();
List<Asset> list;
Type[] extraTypes = new Type[1];
extraTypes[0] = typeof(Asset);
System.Xml.Serialization.XmlSerializer serializer = new System.Xml.Serialization.XmlSerializer(typeof(List<Asset>), extraTypes);
object obj = serializer.Deserialize(xReader);
list = (List<Asset>)obj;
XmlSerializerclass expects the XML to be in the same format that it generates, not your arbitrary format. You'll need to write your own XML deserialization class for this. – Polynomial Oct 5 '11 at 20:33