I\'m deserializing a class called Method using .NET Serialization. Method contains a list of objects implementing IAction. I originall
Method
IAction
XmlSerializer has a constructor that accepts an array of types that will be accepted when deserializing:
public XmlSerializer( Type type, Type[] extraTypes );
You should be able to pass your array of assemblyTypes as the second argument.