Hi All
I have a protected class in which I want to declare a method as must override. I thought I could simply declare that method as abstract such as
but that gives the following compiler error:
Can anyone tell me how I can declare my method as one that must be overridden in the inheriting class?
TIA
Smeat
I have a protected class in which I want to declare a method as must override. I thought I could simply declare that method as abstract such as
Code:
protected abstract Table GetMainContent();
Code:
MasterTemplate.GetMainContent() is abstract but it is contained in nonabstract class 'BaseClasses.MasterTemplate'
Can anyone tell me how I can declare my method as one that must be overridden in the inheriting class?
TIA
Smeat