I\'m trying to use the XmlSerializer to persist a List(T) where T is an interface. The serializer does not like interfaces. I\'m curious if there is a simple way to serializ
The easy way is to add the [Serializable()] decoration to your classes and change your IList to List and see if that works.
If you use interfaces then go see webturner's answer.