giggetto71
Programmer
Hello,
I am trying to watch a variable
where
Now, I am able to make it work fine in the code, but when I try to watch the variable myvar (in debug mode) I am not able to see the i-th element, but I can only watch the first of the array. Of course I tried already with
but I get a "CX0058: Error: Overloaded operator not found."
Does anybody know if there is a way to watch the i-th item of the CArray object as it is normally possible with traditional array?
Thanks in advance
I am trying to watch a variable
Code:
CArray<CFoo,CFoo>myvar
Code:
typedef struct tagCFoo
{ CString name;
long num1;
long num2;
} CFoo;
Code:
myvar[i]
Does anybody know if there is a way to watch the i-th item of the CArray object as it is normally possible with traditional array?
Thanks in advance