Serialize in C++ then deserialize in C#?

前端 未结 6 594
轮回少年
轮回少年 2020-12-15 09:40

Is there an easy way to serialize data in c++ (either to xml or binary), and then deserialize the data in C#?

I\'m working with some remote WINNT machines that won\

6条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-15 10:06

    Other options would be:

    • creating a binary file that contains the data in the way you need it ( not a easy & portable solution )

    • XML

    • YAML

    • plain text files

提交回复
热议问题