Question

Inheriting Object

How do you define code in an object to be able to override in inheriting object

Like 0

Like

1 comments

I write it only in methods. Even if I create a script task I add only one method inside the script task. Then I write c# code in the method. 

It's possible to override methods in child objects. 

Please note that it's possible either to override the method at all or to call parent. Nothing else. For example, it's not possible to skip one parent but call the next one.

Show all comments