Hi Joe,
Thanks for the reply,
So, do I need to create all the entities with List implementation for the purpose of deserialization? why I'm asking is I'm having 60 classes in my framework, it is too huge in creating the same items with different implementation, when we consider for maintenance it is more complex in maintaing the changes in both the places.
Anyways this is one approach, is there any other workaround for this?
Any help on this regard is highly appreciated.
joe.nguyen wrote:
IList's cannot be serialized/deserialized.
Short awnser is that it's because it is an interface.
The workaround that I had to implement was to use a base class and two parent classes -- one with IList and one with List.
I serialized the IList and used the class with List to deserialize with.