Is there an easy way to serialize a C# structure and then deserialize it from c++.
I know that we can serialize csharp structure to xml data, but I would have to implement xml deserializer in c++.
what kind of serializer in C# would be the easiest one to deserialize from c++?
I wanted two applications (one C++ and another csharp ) to be able to communicate using structures of data
Try Google Protocol Buffers. There are a bunch of .NET implementations of it.