vote up 0 vote down star

I have a bit of code that passes around a ton of objects and I want to determine if there are any references still lingering around that I am unaware of and where it is those references are located. Any idea of how I can do this?

My understanding is that the watch window only allows me to see items available to the currently executing code block, and the "Find All References" only helps if I add references to objects at compile time. Unless there is more to the watch window than I am aware of.

flag

69% accept rate
Are you talking about compile-time or run-time? Please clarify your question. – Kent Boogaart Sep 25 '08 at 18:21

3 Answers

vote up 1 vote down check

A profiler will allow you to do this. CLR Profiler or ANTS Profiler are two examples.

link|flag
vote up 1 vote down

In a IDE like Elcipse or Visual Studio you can do it with the context menu.

link|flag
vote up 2 vote down

if you are talking in the code, just right click on the object name, in the drop down menu pick "Find all references", the list of references will appear below in the output window

EDIT: Since there was only a .NET tag, Visual Studio assumed

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.