The !DumpArray
command does not have the -short flag like !DumpHeap
. Now, I have an array of objects, i.e. an array of addresses. How can one iterate over all of them using .foreach
(or any other way)?
I can probably treat the array as an unmanaged object - figure out the layout and get to the contiguous memory part where the 64 bits addresses are stored. But I really hope there is a better way.