I have a jagged uint8
array like this in c++:
UINT8 ras[2][3] = {{1,2,3},{4,5,6}}
I need some way to use this as a byte array in c#. Something like
byte[2][3] ras = {{1,2,3},{4,5,6}}
I have a lot of uint8
arrays, so doing it manually is not an option.
Anya ideas?