I have an interface ISomething which defines GetSomething().
I have a bunch of classes Something1, Something2,... all implement ISomething and therefore GetSomething().
When I right-click on Something1.GetSomething() and click Find All References, VisualStudio shows all references to ISomething.GetSomething() instead of the actual derived class.
I'm wondering if there is a way to navigate to Something1.GetSomething() without scrolling down all the implementations of GetSomething()
