secondflying
secondflying

Reputation: 871

How to find all reference of a Class/Method in all source code AND referenced dll in visual studio?

Using "Find All Reference", I can only find all reference in my source code. How can I find all reference in third-party referenced dll? I'm using visual-studio 2010

Upvotes: 0

Views: 1327

Answers (1)

ssingh3
ssingh3

Reputation: 125

You can find this if you install Resharper:

Expand the References and choose Find code Dependent on Module

enter image description here

The results then appear like:

enter image description here

Upvotes: 2

Related Questions