Hi, Is there an easy way to serialize a csharp 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 csharp 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. |
||
|
|
|
|
Here's a class I wrote to convert a .NET structure to an array of byte, which allows to pass it easily to a C/C++ library :
|
||
|
|
|
|
Boost has serialization libraries that allow XML , Binary and Text serialization. I'd say it's a pretty easy scenario where you serialize to XML in C++ using Boost, and deserialize in C#. If you wish to have 2 applications communicating with each other, I'd also recommend considering networking. C# has built in sockets, C++ has Boost::Asio , it's pretty easy to communicate over 127.0.0.1 :) Hope that helps |
||
|
|
