I would think that adding that attribute to an interface would be helpful make sure you do not create classes that use the interface and forget to make them serializable.
This could be a very fundamental question, but I wanted to ask the experts.
|
I would think that adding that attribute to an interface would be helpful make sure you do not create classes that use the interface and forget to make them serializable. This could be a very fundamental question, but I wanted to ask the experts. |
||||
|
|
Interfaces define a contract and do not have any state of their own. Serialization is about saving and loading state into and out of an object model. Not much point to serializing something that holds no state. To answer the practical question of forcing an implementation of an interface to be In .NET you can declare an interface that should implement other interfaces:
See some more information here. |
|||||||||||||||
|
|
If you want to force classes that implement your custom interface
This more clearly indicates that the implementing class should support serialization. This does not remove the need to mark the class with the IIRC, you can also create a FxCop custom rule that checks that classes that inherit from |
||||
|
|
|
There are some good albeit esoteric reasons behind what an interface is and isn't which keeps this from being possible. That said however: I agree with you. There are many things that would be useful if we could incorporate them into interfaces. Although they do not fit into the philosophy of what an interface is, they seem to incorporate this vacant grey area in single-inheritance OOP. There are of course work arounds but they feel very forced compared to the original intent. |
|||
|
|
|
Well, there is a reason that new classes are not marked as serializable by default: By adding the So, if you "forgot" to add the |
|||
|
|