Showing posts with label Multiple inheritance using interfaces. Show all posts
Showing posts with label Multiple inheritance using interfaces. Show all posts

Multiple inheritance using interfaces




C# does not support multiple class inheritance. To overcome this problem we use interfaces to achieve multiple class inheritance. With the help of the interface, class C( as shown in the above diagram) can get the features of class A and B.