Hi, Is it possible to add a watch of a static variable without having to pause execution in the module it is located before adding the watch?
Even if you type the watch into the watch window, the debugger only sees the variable once a breakpoint is hit within the module its contained.
I know this sounds correct and obvious as a static variable only has scope to the module its contained in, but once the debugger has accessed it, the variable is constantly updated when execution begins again, just like a global variable.
Does anyone know how to add a static varible watch without using a breakpoint in the module the variables contained?