Can Interface Inherit Other Interfaces?

Yes, an interface can inherit from another interface. When an interface inherits another interface, it inherits all the members of the base interface. The class implementing the derived interface will need to implement all the members of both the base and the derived interfaces.

Source Code:

Complete and Continue  
Discussion

4 comments