Yuriy
Yuriy

Reputation: 2691

How to know what objects have reference to same object (In Debug Mode)?

I need to find all places which have a link to same object. I need to do this because my object never been garbage collected.

Upvotes: 1

Views: 91

Answers (1)

Dyppl
Dyppl

Reputation: 12381

You should try using a memory profiler for that. Ants Memory Profiler and Memprofiler are decent.

Also, check this question: Track all object references in C#

Upvotes: 1

Related Questions