Suppose I have a std::vector<Foo> of size 30, the Foo struct is defined as:
struct Foo {
int a,b,c,d,e,f,g,h,i,j,k,l,m; //many fields
// ...
};
Is it possible to "watch" only the contents of the field g for all the elements of the vector?
I think that an expression at the Watch Window like:
(v)._Myfirst[$index].g
//v would be the variable holding the vector being debugged
would suffice.

