C# does not support multiple inheritance , because they reasoned that adding multiple inheritance added too much complexity to C# while providing too little benefit . In C#, the classes are only allowed to inherit from a single parent class, which is called single inheritance .
Read moreIs inheritance bad in C#?
Inheritance (Derived and Base Class) In C#, it is possible to inherit fields and methods from one class to another . We group the “inheritance concept” into two categories: Derived Class (child) – the class that inherits from another class.
Read more