I have python server that serialize some dictionary by using the marshal module. And send serialized message to the c# client socket. How I can deserialize this message on the client (c#) side. I can not use IronPython because of problems with the speed of execution.
Or do you know other ways to serialize/deserialize "messages" between Python and c#.