views:

24

answers:

2

In my project, there are tons of interface classes used. I have difficulties in reading to understand the code since browsing the definition of the codes (by selecting the method name and pressing F12 or right click + go to Definition) just lead me to the interface.

Is there a way (built-in or addon) in Visual Studio 2010 to list out all of the instance of a method of an interface?

Hope to hear from you.

A: 

Resharper can do this and is an excellent addition to VS.net for many other reasons that you'll discover...

Tahbaza
Thank you for your suggestion. But it costs quite high for me (USD200 for personal used)...
Nam Gi VU
A: 

After a while, I found that just with VS 2010, I can archive this all alone: Use "Call Hierarchy"!

  1. Place your cursor on any member of the interface class
  2. Right click and choose "View Call Hierarchy"
  3. Open the "Implements..." node in the "Call Hierarchy" pane.

That's it. Enjoy ^_^!

Nam Gi VU