documentation - Sandcastle: Any way to show inherited members without showing base class? -


given derived class (using c#):

public class baseclass {    public void amethod() {} } public class derivedclass : baseclass { } 

and running sandcastle documentation project in baseclass hidden (sandcastle visibility's api filters),

is there way document derivedclass members inherited baseclass if declared explicitly?

i not want make wrappers:

public class baseclass {    public void amethod() {} } public class derivedclass : baseclass {    new public void amethod() { base.amethod(); } } 

^^^ don't want this.

these stack overflow entries similar not seek:

i want show rather hide.

the application eschews, explicitly, interfaces or contracts because of legacy issue microsoft visual studio 2012.

thanks!


Comments

Popular posts from this blog

ZeroMQ on Windows, with Qt Creator -

unity3d - Unity SceneManager.LoadScene quits application -

python - Error while using APScheduler: 'NoneType' object has no attribute 'now' -