我在 C# 中有一个列表对象列表
List<List<string>> matrix = new List<List<string>>();
注意:列表中的数字元素在运行时更改 ,我想使用 protobuf 进行序列化
后来我需要protocolBuffer
在 C++ 中使用反序列化数据作为vector<vector<string>>
这可以做到吗?想知道如何定义 .proto 文件?
我在 C# 中有一个列表对象列表
List<List<string>> matrix = new List<List<string>>();
注意:列表中的数字元素在运行时更改 ,我想使用 protobuf 进行序列化
后来我需要protocolBuffer
在 C++ 中使用反序列化数据作为vector<vector<string>>
这可以做到吗?想知道如何定义 .proto 文件?