Binary serialization/de-serialization in C++ and C#

前端 未结 3 494
伪装坚强ぢ
伪装坚强ぢ 2021-01-19 02:42

I am working on a distributed application which has two components. One is written in standard C++ (not managed C++ and running on a Linux platform) and the

3条回答
  •  天命终不由人
    2021-01-19 03:21

    Another possibility would be Thrift, it has even more backends and if necessary provides a good part of the code required for network communication - in case you want to scale out.

    If you only want easy object serialization I would have a look at json.org There are plenty of C++ / .NET implementations around.

提交回复
热议问题