Simple question about Inheritance

rws

Newcomer
Joined
Apr 24, 2003
Messages
12
Location
Vermont, USA
In the inherited class, is it possible to hide properties, events, and methods that belong to base class (without editing the base class routines)?
 
I've seen other people ask for this too, I don't know why though. Inheritance is designed so you can extend or replace functionality on a base class, not remove it. If that were the case, you could no longer assume that a derived class has a method that a base class had and things would get very nasty.
 
Back
Top