Skip to content

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

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

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

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