How can I simulate multiple inheritance in C# without using interfaces. I do believe, interfaces abilityes are not intended for this task. I'm looking for more 'design pattern' oriented way.
|
So for as far C# (limited) support of 'multiple inheritance' goes, interfaces are the official way. |
|||||||
|
|
Like Marcus said using interface + extension methods to make something like mixins is probably your best bet currently. also see: Create Mixins with Interfaces and Extension Methods by Bill Wagner Example:
prints splasshy,splashy Not an easy Job |
|||
|
|
|
Although not quite multiple inheritance, you can get "sort of mixin functionality" by combining interfaces with extension methods. |
|||
|
|
|
Multiple inheritance in a form of a class is not possible, but they may be implemented in multi-level inheritance like:
As you can see the last class inherits functionality of all three classes:
But this is just inheritance and doing it this way is not good design and just a workaround. Interfaces are of course the preferred way of multiple inherited implementation declaration (not inheritance, since there's no functionality). |
|||
|
|
As C# only supports single inheritance, I believe you'll need to add more classes. Are there specific reasons for not using interfaces? It's not clear from your description why interfaces are not suitable. |
|||
|
|