I serialized a class and sent it to another application using IPC
, however when i try to cast the received class to the same class (but in different assembly) i always get null if (in case of safe cast) or throw exception if direct cast..
So how can i access data members of the received class throw IPC
? note i use JSON
Serialize and De-serialize to send my class to the other application.
I tried setting both applications with the same assembly name but this doesn't work.
Also i tried setting the Assembly GUID with the same result.