I have long multidimensional arrays that contain values that range from 0 to 16.
They are currently stored as:
byte[][,] example = new byte[1024][16,16];
This is about 300 KB.
Is there a more efficient way to store this data? Since the byte can be 0 - 255, this is ideal for a single line of 16 values with a range of 0-15.
source share