Multiple Inheritance

In this lesson, you'll learn what multiple inheritance is and how it can be implemented in C#.

What Is Multiple Inheritance?

When a class is derived from more than a single base class, i.e., when a class has more than one immediate parent, it is an instance of multiple Inheritance. Let’s take an example of Redbull:

RedBull is an energy drink as well as a beverage.

How to Implement?

As mentioned earlier, in C#, a class can’t extend from more than one ...