I have a variable double * pDouble. it is pointing to an array of
doubles. in the watch window, I can see the value of its first element
only. is there any way I can see the whole array, like what a
vector<double> variable does?
I tired "(double[]) pDouble" or "(double[100]) pDouble". neither works.
thanks!
Jeff Pek (Autodesk) - 06 May 2006 12:13 GMT
Try this:
pDouble,10 (to show the first 10 members)
jp
>I have a variable double * pDouble. it is pointing to an array of
> doubles. in the watch window, I can see the value of its first element
[quoted text clipped - 3 lines]
> I tired "(double[]) pDouble" or "(double[100]) pDouble". neither works.
> thanks!