When I hover over an stl container, I can instantly get a snapshot of its contents:

However, if I for example, have a class with m_array which is allocated as new int[99]; then I only see the first integer of that array when I hover.
I find this inconvenient for debugging.
How can I make my class display its array's contents when I hover over it when debugging?
Thanks