|
If it is true that delegation should be preferred over inheritance, then there should be a language supported way to do it easily (since the language should support best practices). For example:
class MyClass {
// this would make method1() work from this
// object
delegate OtherClass.method1;
}
|