B
bronco
Guest
class TheNewObjectClass inherits TheObjectClass: method public override logical IsNull(propertyName as character): if (not this-object:Has(propertyName) then return true. return super:IsNull(propertyName). end method. end class. // assuming TheObjectClass is the class theObject is an instance of (and isn't final). // of course now you have to make sure that theObject is of type TheNewObjectClass
Continue reading...
Continue reading...