I have searched a bit online and couldn't find an answer to my question.
I have a C# serialization that is made from a MemoryStream's Object. I would like to save that Serialization (which is a thing I already can do) and then deserialize it with JavaScript.
Do anyone know if this is possible ? I haven't seen any API which could do that.
Thank you for your answers. To be more specific I already have an application running in C# which use the MemoryStream's deserialization. This is a pretty big application and I want to do as few modifications as possible. I want to link an other application (which is running in HTML/JavaScript) with the first one by using the same serialization. If I use the JSON Serialization I will have to often modify the code in C# which is a thing I want to try to avoid.
To summarize, I want to be able to "read" the serialization generated by C# in my javascript project.
In order to be clear I don't want to use an other serialization to JSON / XML / ..., I would like to use the one I'm already using and then deserialize it with JavaScript.
Thanks in advance.