How do you find all implementations of an interface?

In plain Visual Studio (since 2010) 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.

Leave a Comment