Return true if this class is a base class.
true
A class is a base class if it has an explicit base modifier, or the class has a base induced modifier and isSealed is true as well. The base modifier allows the class to be extended but not implemented.
base
bool get isBase;