ARTICLE AD BOX
Is there any way, using the Visual Studio debugger, to see all the objects belonging to the application currently running? e.g. for tracking down rogue instances of a class that might be still hanging around in memory.
Using the "Watch" I can only view objects in the current scope (and I have to know the variable name), but I want to be able to see everything across the entire application, or at least a thread... or all instances of a specific class.
