Hiya all,
I like to get some opinions about these arrays;
Byte [] chunk = new Byte[65536]; Byte [,] chunk2D = new Byte[256,256];
I would say they are equal in allocation usage. But, perhaps the latter would be faster or slower code?
What do you all think?