Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
pascalberger opened this issue Jan 15, 2023 · 0 comments
Open

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

pascalberger opened this issue Jan 15, 2023 · 0 comments

Comments

@pascalberger
Copy link

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>
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

1 participant