I am writing an application which requires many state variables to be passed from java to C#. I need to serialize the whole object for this and then somehow deserialize it in C# and initiate corresponding object in C#. Is this possible?
Can I use default java serialization for the purpose? If yes, how?
PS : The object in question is from an abstract class. The class extending this abstract class is the one that needs to be serialized and its definition can vary as per user preferences.
PPS: After being redirected to google developers' page innumerable times, I am considering the usage of WOX (mainly because it is extremely "easy" to use), but it seems pretty outdated and there has been no new update in last few years. Is there any alternative, with comparable ease of usage?