Shaggydog
Shaggydog

Reputation: 3798

Find all references to SpecificClass.SpecificMethod() in VS2015 with ReSharper

I'm trying to find all the places where the Dispose() method of my class is called in a rather large solution. More precisely, I want every line of code where Dispose() is called on an instance of my class, or its derived class.

But when I select "Find usages", it'll find me every Dispose() call on every IDisposable implementation in my solution.

I'm using Visual Studio 2015 with ReSharper, and in my opinion at least one of them should be able to do it. I can't figure out how though.

Upvotes: 0

Views: 39

Answers (1)

Shaggydog
Shaggydog

Reputation: 3798

ReSharper adds "Find Usages Advanced" to the context menu. I need to ask less and search more.

Upvotes: 2

Related Questions