Hello,
I was wondering, could "Find references" for overriden/interface implementation methods be made more general? I.e. to include the base class / interface usage, not only the very specific method I'm searching for.
Example:
class Base
{
// this method is used everywhere
public abstract object createStuff();
}
class Derived: Base
{
// never explicitely called, just via the base class method
// if trying "Find reference" on this method, I get no results, even though the base class method is called everywhere...
public override object createStuff()
{
}
}
Build details: SharpDevelop,4.3.1.9432,