Class Inheritance

In this chapter you will learn:

  1. How to inherit from a class

Inheritance

Classes (but not structs) support the concept of inheritance. A class that derives from the base class automatically has all the public, protected, and internal members of the base class except its constructors and destructors.

In C# one class can only inherit from a single class. Private members are not inherited.

A class that is inherited is called a base class. The inheriting class is called a derived class. A derived class is a specialized version of a base class. A derived class has all of the variables, methods, properties, operators, and indexers from the base class. A derived class adds its own unique elements.

The general form of a class declaration that inherits a base class:

class derived-class-name : base-class-name {
    // body of class
}

The following code defines a Person class. Person class has all common fields for all person types.

class Person{
   public string name;
}

When declaring the Employee class we can build the employee type based on person type.

class Employee:Person{
   public string companyName;
}

Employee inherits the name field from Person.

Next chapter...

What you will learn in the next chapter:

  1. How to add a constructor to a class
  2. How to define a constructor with parameters
Home » C# Tutorial » Class
Classes and Structs
Encapsulation
Class and Struct Accessibility
Members
Static Members
Class
Class instance variables
Class instance Methods
Class Inheritance
Class constructor
Default constructors
Parameters of constructors
Constructor overloading
Static Constructor
Destructor
Override destructor
new operator
Class field
Static Fields
Read only field
Field default value
const value
Abstract class
Static Class
Partial type
Methods
Method local variable
Method Overloading
Method overloading with ref and out
Type conversion and method overloading
Error in Method overloading
virtual methods
Override methods
Method Parameter
Pass parameters
ref parameters
out parameters
Variable parameter length
Optional parameters
Named parameters
static method
function Return
Recursive methods
Virtual methods and polymorphism
Cast
Shadow inherited members
Seal a member
this keyword
base keyword
base and name hiding
Access Specifiers
private
public
protected
internal
Indexer
String type indexer
Multidimensional indexer
Indexer overloading
Indexer to append
Indexer logic
Properties
Properties getter and setter
Accessibilities of properties
Automatic properties
Read only and write only property
Virtual properties
Abstract Properties
Static Properties
interface
interface implementation
Explicit interface implementation
Interface inheritance
Indexer in an interface
Interface Properties
struct and interface
virtual interface implementation
as operator
is operator
null reference
Nested classes
object class
ToString method
GetHashCode
Object initialization
Extension method
Struct Instances vs. Class Instances