What is the memory layout of a .NET array?
Take for instance this array:
Int32[] x = new Int32[10];
I understand that the bulk of t
An array object would have to store how many dimensions it has and the length of each dimension. So there is at least one more data element to add to your model