Its a common problem. The first question i would ask myself is why your trying to serialize an object which type is not marked as serializable. Did the author of that type leave it off for a reason? Is there a chance that in the future, the type will be expanded with some unserializable behavior?
Then there are 3 solutions in my head. Unfortunatly, you cant directly serialize the object. What you can do is this:
Create a wrapper object (marked as serializable) containing all the properties you want to serialize and copy the values from the actual object to the wrapper object and back.
Extending on option 1: Instread of a simple wrapper object, create a more dynamic wrapper class containing a list of KeyValuePairs where you bind the propertyNames to propertyValues and make some generic code which can fill this list based on a existing object and fill an object based on such a list.
Use unsafe code and do the serialization yourself (pin the object, read its memory and write to a memory stream). << This method is really really unsafe
RasterizerStateas XML? – Andrew Russell May 19 '11 at 11:11IntermediateSerializeris perhaps suitable (downside: you can only serialize on Windows). It can handle arbitrary objects, and you can load its serialized output via the Content Pipeline. – Andrew Russell May 20 '11 at 3:13