Details
Description
- Have a simple loop working on an array:
int a[20]; for (int i = 0; i != 20; ++i) a[i] = i;
- Stop at a breakpoint before entering the loop.
- Open memory view for the array.
The memory view will open up in a new window. - Step into the loop, changing the values in the array.
Memory view won't show the updated values. - Click into the memory view window.
Now values will be updated.
The memory view should update whenever values change.