Quantcast
Channel: SharpDevelop Community
Viewing all articles
Browse latest Browse all 1764

overridden method / interface implementation methods "Find references"

$
0
0

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,

 


Viewing all articles
Browse latest Browse all 1764

Trending Articles