Visual Studio IDE - how do you quickly find the implementation(s) of an interface's method?
- by Jess
Is there a quick way to find all of the implementations of, not references to, an interface's method/property/etc? Here's some sample code:
public class SomeClass : IBaseClass
{
public Int32 GetInt()
{
return 1;
}
}
public interface IBaseClass
{
public Int32 GetInt();
}
public class SomeOtherClass
{
ISomeClass _someClass;
…