View all objects with the tag "Make Object ID" in the debugger

When debugging, you can mark an object using "Make an object identifier" so that you can monitor instances of the object through a stack of calls and graphs of objects. Is there a way to see a list of all the objects that you marked regardless of the current stack and local variables?

+4
source share
1 answer

In C # there is no way to do this. The best thing you can do is go down the identifiers of the objects in the list (numerically from top to bottom) and see which ones point to the actual objects.

You can add each item that you want to look up by ID # to one of the debug tracking lists ( Debug | Windows | Watch | Watch 1 ).

+5
source

All Articles