Does [Serializable] work for inherited classes?
- by MattiasK
I haven't worked much with remoting so excuse this rather rudimentary question, If I derive a class from an abstract class marked as [Serializable] (for passing the data across an appdomain), does the other side get the actual overriden implementation? ie does polymorphism work over remoting/Serializable?
I need to create a clone on the other side rather than operating on the original so MarshalByRef is not an option...