If something inherits from a Serializable class, is the child class still Serializable?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
It depends what you mean be serializable. If you mean the CLI marker (i.e. the [Serializable] attribute), then this is not inherited (proof below). You must explicitly mark each derived class as [Serializable]. If, however, you mean the ISerializable interface, then yes: interface implementations are inherited, but you need to be careful - for example by using a virtual method so that derived classes can contribute their data to the serialization.
|
|||||||||||||
|
|
Be careful if you implement ISerializable! You have to override its methods and, after you're done serializing your properties, you must call the base class' implementations! |
|||
|
|