You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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>
{
}
The text was updated successfully, but these errors were encountered:
Assuming the following classes I would expect
Foo
to be listed as method for documentation ofMyClass
, but it is only available on documentation ofMyBaseClass
The text was updated successfully, but these errors were encountered: