is vb.net row-major or column-major in 2d array allocation? -
is vb.net row-major or column-major in 2d array allocation?
.net stores 2d arrays in row major order.
ref. (about half-way down!)
cli spec (section 8.9.1) states:
array elements shall laid out within array object in row-major order (i.e., elements associated rightmost array dimension shall laid out contiguously lowest highest index). actual storage allocated each array element can include platform-specific padding.
Comments
Post a Comment