Suppose I have two different xml files as embedded-resource in a same assembly:
x.xml
<car brand="Hummer">
<type ... />
<chasis ... />
</car>
y.xml
<shark species="HammerHead">
<color ... />
<maxLen .... />
</shark>
And I have two classes Car.cs and Shark.cs to help to deserialize them.
What would be the technique to deserialize them into two different and separate objects?
The following code can handle only one type at a time. Isn't it?
string[] manifestResourceNames = assembly.GetManifestResourceNames();
foreach (string mrn in manifestResourceNames)
{
Stream stream = assembly.GetManifestResourceStream(mrn);
XmlSerializer serializer = new XmlSerializer(typeof(Car));
Car car = (Car)serializer.Deserialize(stream);
.... .... ....
}
And, when this code will encounter a Shark-class, it will generate an exception.