How to see content of an array within an array in debug watch window
Visual Studio
1
Posts
1
Posters
0
Views
1
Watching
-
Hi I have defined an struct which has an array within it and then I have defined an array of that struct how can I see a specific member of second array in debug time. the actual situation is even more complex and I have several levels of arrays nested within each other but I thing if I know how to do it following code then I can solve my problem...
typedef struct tag_myStruct
{
CArray <int> aInt;
CArray <MyClass> aMyClass;
.
.
.
}MyStruct;CArray<MyStruct> m_aMyStruct;//Let's Say I want to see m_aMyStruct[2].aInt[3]
thanks:rose: