If you have a statically allocated array, the Visual Studio debugger can easily display all of the array elements. However, if you have an array allocated dynamically and pointed to by a pointer, it will only display the first element of the array when you click the + to expand it. Is there an easy way to tell the debugger, show me this data as an array of type Foo and size X?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Yes, simple. say you have
writing in the debugger:
would show you the content as if it were an array. |
|||||||||||
|
|
In a watch window, add a comma after the name of the array, and the amount of items you want to be displayed. |
|||
|
|
|
I haven't found a way to use this with a multidimensional array. But you can at least (if you know the index of your desired entry) add a watch to a specific value. Simply use the index-operator. For an Array named current, which has an Array named Attribs inside, which has an Array named Attrib inside, it should look like this if you like to have to position 26:
You can also use an offset
will show ne "next" 25 elements. (I'm using VS2008, this shows only 25 elements maximum). |
||||
|
|