Introduction to OOP Chapter 13: Multiple Inheritance: next previous audio real text

Multiple Inheritance of Interfaces

Multiple inheritance of interfaces does not present the same problem of name ambiguity as does multiple inheritance of classes. This is why Java permits multiple inheritance of interfaces, not of classes.

Nevertheless, C# does not permit the same method name to be inherited from two parent interfaces.

Intro OOP, Chapter 13, Slide 12