Hi,
Yes, you are right, you cannot check the value of static variables in Watch Window. However, there is a workaround, you can use a reference to this static variable. For example:
void test_static_var()
{
static int blabla = 3;
int& temp = blabla;
printf("blabla=%d\n", blabla);
}
Then you can see the static variable in Watch Window.
Penn