Statiq.Docs
Statiq.Docs copied to clipboard
Methods from base class not listed if base class is generic
Assuming the following classes I would expect Foo to be listed as method for documentation of MyClass, but it is only available on documentation of MyBaseClass
public abstract class MyBaseClass<T>
where T : MyBaseClass<T>
{
public T Foo()
{
}
}
public class MyClass: MyBaseClass<MyClass>
{
}