Xml serialization

Hi, here is my situation. I embedded the GoXamModel into a property of a class that I serialize with the XmlSerializer. But when I tried to serialize this class, it’s not working because of the GoXamModel Property. Is there a way to solve my problem without doing custom serialization with the IXmlSerializable interface?

The predefined model data classes are Serializable and can easily be saved and loaded as custom XML using Linq for XML, but there was no effort to support the XmlSerializer.

So yes, you’ll need to implement it explicitly.

But maybe you would want to consider using Linq for XML mixed into your XmlSerializer reading/writing. I know it’s possible.