Using ProtoBuf-Net, how to (de)serialize a multi-dimensional array?

此生再无相见时 提交于 2020-01-10 02:53:17

问题


Since ProtoBuf-Net does not support serializing/deserializing multi-dimensional arrays, how would I go about managing my arrays?


回答1:


This is essentially a limitation of the underlying protobuf wire format; it only supports single-dimension arrays.

Two options leap to mind; firstly, send it as a linear array, and send the dimensions separately.

You could also represent it as a list of objects that each has an array - essentially a jagged array, but with an intermediate step.

Of the two, the first is both simpler and more efficient.

Either way, if you are sending something like intergers, you should look at "packed" encoding (available via the options property) - this can further reduce the payload for arrays etc.



来源:https://stackoverflow.com/questions/4090173/using-protobuf-net-how-to-deserialize-a-multi-dimensional-array

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!