posted 17 years ago
Pretty much yes, that's the purpose of abstract classes.
However, whatever access modifiers you apply to methods in an abstract class still apply. So if an abstract class has a public method, then any calling code can call that method on an instance, but if a private method exists in the abstract class, then not even subclasses wont be able to call it.
[ November 15, 2006: Message edited by: Andy Morris ]