I would like to have an array of byte arrays.
If I have an array of int
, I can set a length of it with this:
var array = new int[12];
But if I try this with byte[]
, it doesn't work:
var bytesArray = new byte[][12];
How can I define an array of byte arrays?
(In the moment, I try to define this, I don't know the individual length of the single byte arrays.)