When debugging you can tag an object with “Make Object ID” so you can follow instances of the object through the call stack and object graphs. Is there any way to see a list of all objects that you’ve tagged regardless of the current stack and local variables?
Share
There is no way to do this in C#. The best you can do is to go down the list object ids (numerically top to bottom) and see which ones point to valid objects.
You can add each item you want to watch by ID# to one of the debug watch lists (Debug | Windows | Watch | Watch 1).