Types of Inheritance

In the previous lessons, you covered the basics of inheritance. In this lesson, you will learn about the various types of inheritance in C#.

Depending whether it is a base class or a derived class, these are the five types of inheritance in general:

  1. Single
  2. Multi-level
  3. Hierarchical
  4. Multiple
  5. Hybrid

Single Inheritance

In single inheritance, there is only a single class extending from another class. We can take the example of the Product class (base class) and the Beverage class (derived class). ...