Is it possible to see the content of a dynamically allocated array, as in:
int *array = new int[dimension];
I only see the value of the pointer.
edit: just found the option "display as an array", but I always have to manually enter the size of the array. Is it possible to get that automagically?