I would like to be able to see the contents of dynamically allocated array while debugging in Visual Studio 2010. One can easily watch what's inside the statically allocated array but when it comes to dynamical allocation only the address of first element can be seen in debug mode.
Is there an option to preview these contents ? (other than making an array with constant size and assigning all dynamical allocated contents to it)