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

前端 未结 3 464
伪装坚强ぢ
伪装坚强ぢ 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:36

    I would recommend Protocol Buffers, which is Googles own serialization library. It has both .Net, C++ and Java serializers. Most implementations are also quite fast.

    http://code.google.com/p/protobuf/

提交回复
热议问题