0

How to hide protected members of sealed class

 I cannot find an option that allows to hide protected members of a .Net class which is sealed.

It is the common situation when protected members are specified in a base class and are used in its subclasses. Documenting such members in the base class is important for implementers of subclasses, but in a subclass which is final in the inheritance chain (sealed in C#), documentation for such members is redundand. How to remove this documentation in sealed class?

Sincerely, Alexander 

5 comments

Please sign in to leave a comment.