I have an inner class:
internal abstract class Reader
{
}
I can not do this class:
public abstract class CustomFileReader : Reader
{
}
Because it is more visible than the class to which it inherits. I want to do this to ensure that you inherit from the public inheritance of the Reader class, not the base class. Is this possible, or do I need to set the base class?
source
share