with Visual Studio Call Hierarchy functionality I can find calls to a certain method.
However, it doesn't seem to be able to find class through an implemented interface. Like in the following, if Method()
is called through IFoo, these calls aren't found in the Call Hierarchy?
interface IFoo
{
void Method();
}
class Foo : IFoo
{
public void Method()
{
// ...
}
}
Is there some way to do this in plain VS or with some free plugin?
Resharper seems to be able to do this (with some problems with more complicated cases) as in C# - Can't find usage of method when inherited and used through an interface implemented by the subclass.
br, Touko