Since ProtoBuf-Net does not support serializing/deserializing multi-dimensional arrays, how would I go about managing my arrays?
Asked
Active
Viewed 4,211 times
1 Answers
8
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.

Marc Gravell
- 1,026,079
- 266
- 2,566
- 2,900
-
Thank you. That's what I thought. Wished that Google in all their wisdom would have provided a way to elegantly handle this case. I guess not. – Stécy Nov 04 '10 at 12:07