I've got a class which has properties referenced to couple of interfaces and classes.
Now I'm trying to transfer this one class via WCF (named pipes), what's the best way to deal with it?
Shall go into all referenced interfaces, class and mark stuff as <DataContract()>, <Serializable()> and <DataMember()>
, which means at least 6-10 classes to change.
Is there any other practical way to solve this problem? These interfaces and classes all shared in the host as well as the client. They are using the very same DLLs.