Serialization java to c#
- by tom
Hi,
I have manged to serialize an arraylist in java using xstream, send it to my c# application via http and then write that to file (just for now).
The serialized data was an arraylist in java. I want to try and re form this arraylist in c# from the xml i have.
I have been looking at http://code.google.com/p/xstream-dot-net/ to do this. Does anyone know if that is the right way to go or is there a better way of reforming the serialized data in c#?