Tagged Questions
The inheritance-prevention tag has no wiki summary.
2
votes
8answers
5k views
How to hide (remove) a base class's methods in C#?
The essence of the problem is, given a class hierarchy like this:
class A
{
protected void MethodToExpose()
{}
protected void MethodToHide(object param)
{}
}
class B : A
{
new ...
0
votes
6answers
377 views
Preventing methods from being inherited
I have a base class Foo that is concrete and contains 30 methods which are relevant to its subclasses.
Now I've come across a situation that is specific only to the base class,and I want to create a ...