After doing some research online, I have yet to find a solution to my query.
I currently have a C# serialization created from an Object within a MemoryStream. My goal is to save this Serialization (a task I can already accomplish) and then deserialize it using JavaScript.
Is it possible for anyone to know if this can be done? Thus far, I have not come across any API that offers this functionality.
Thank you in advance for your assistance. To provide more context, I am operating a significant C# application that relies on MemoryStream deserialization. I would like to establish a connection with another HTML/JavaScript application by utilizing the same serialization method. While JSON Serialization may seem like an option, I prefer minimal adjustments to the existing C# code.
In summary, my objective is to interpret the serialization produced by C# in my javascript project.
It is important to note that I am not seeking an alternative serialization format such as JSON or XML. Rather, I aim to leverage the current serialization process and then deserialize it using JavaScript.
Once again, thank you for any guidance provided.