Suppose you have an interface defined in C#. What is the easiest method to find all classes that provide an implementation of the interface?

The brute force method would be to use "Find References" in Visual Studio and manually look through the results to separate out the usages from the implementations, but for an interface in a large codebase that is heavily referenced with relatively few implementations, this can be time consuming and error prone.

In Java, running javadoc on the codebase (using the -private option to include private classes) would generate a documentation page for the interface (e.g. Comparable) that includes all implementing classes for the interface as well as any subinterfaces (though it doesn't include implementing classes of the subinterfaces, these are relatively easy to determine by drilling down into the listed subinterfaces). It's this functionality that I'm looking for but with C# and Visual Studio.

link|improve this question

feedback

6 Answers

up vote 5 down vote accepted

(Edit based on comment...)

If you have ReSharper installed:

In Visual Studio, right click on the type name and choose "Go to Inheritor". Alternatively, select the type name, then go to ReSharper/View/Type Hierarchy to open up a new tab. (The menu will show you the keyboard shortcut - this can vary, which is why I explained how to find it :)

If you don't have ReSharper:

  • You can use Reflector, which is able to show you all the type hierarchy very easily - just under the type name are expandable items for base types and derived types.
  • Buy ReSharper - it's a great tool :)
link|improve this answer
That's a ReSharper feature. – John Price Mar 6 '09 at 20:59
ReSharper is already on my list of requests; I figured it probably had the capability, but alas, I don't yet have it. Reflector allowed me to get the answer to my specific search, though it was a bit of a pain to find and add all the assemblies that reference the one with the interface definition! – iammichael Mar 6 '09 at 21:21
feedback

You can right click a method name (definition in interface or implementation in other class) and choose View Call Hierarchy. In Call Hierarchy window there is "Implements" folder where you can find all locations of the interface method implementation.

link|improve this answer
I see no such menu option (in VS 2008) – iammichael May 5 '11 at 15:42
+1 for using standard tooling !!! – Obalix Apr 23 at 7:32
feedback

I don't think this functionality is inbuilt into VS but IIRC Resharper has this.

link|improve this answer
feedback

If you use resharper ALT + END shortcut might help to find all Inheritors.

link|improve this answer
feedback

try searching for implements [interface] that should only give you implementations and not usages.

link|improve this answer
feedback

I've heard tell (no experience myself) that Doxygen is to .Net as as javadoc is to java.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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