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

.net - Generate assembly with Roslyn -

ZeroMQ on Windows, with Qt Creator -

batch file - filebot superstrict script: need tiny video sample or other solution -