.NET FAQs Unleashed!
 

Is multiple inheritance possible in .NET?

No. Multiple inheritance is not possible in .NET. This means it is not possible for one class to inherit from multiple classes. However, a class may implement multiple interfaces. We may also declare objects of different classes in a class. This way, the encapsulated class may be instantiated in other classes.

1  2  3  4  5  6  7  8  9  10  11  12  13  14  15  16  17  18  19  20