Skip to content

Methods from base class not listed if base class is generic #56

@pascalberger

Description

@pascalberger

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>
{
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions