Multiple inheritance

4
Is the limitation that an object can always only inherit from one other entity something that can be changed in future or are there fundamental technical challenges that play a part in this?
asked
2 answers
5

This is a well-known discussion in Object-Oriented Development / Programming. Read this article on multiple inheritance for some background and critics on the subject.

We do not want to support multiple inheritance in the future. It can create ambiguity and it will lead to more complex domain models.

answered
2

Shouldn't we allow multiple inheritance at least where the second generalization is System.Image or System.FileDocument?

Thanks, Justine

answered