Are arrays contigous in memory or broken up?
Printable View
Are arrays contigous in memory or broken up?
This is a educated guess, but I believe they are continuous. That is why you can use pointers in other languages because you can move to the next memory address which is the next element in the array. As far as .Net though, not sure. Good question.