Derived Classes
When you say a class is derived from another class, it means that it has all the fields and methods of the parent class and in addition to it, the derived class can contain additional fields and methods as well.

A derived class (also called a child class) is a class which inherits the properties of some other class while on the contrary, a base class (also called a parent class) is a class which is inherited from.
The syntax for making an inherited class is the following:
index.cs
1234567891011// Base class (parent class) public class BaseClass { // Fields and methods of the base class } // Derived class (child class) public class DerivedClass : BaseClass { // Additional fields and methods specific to the derived class }
Here's an example with some concrete code:
index.cs
12345678910111213141516171819202122232425262728293031323334353637using System; // Base class (parent class) public class Animal { public string Name; public void Eat() { Console.WriteLine($"{Name} is eating."); } } // Derived class (child class) public class Dog : Animal { public void Bark() { Console.WriteLine($"{Name} is barking."); } } class ConsoleApp { static void Main() { // Creating an instance of the derived class Dog myDog = new Dog(); myDog.Name = "Buddy"; // Using inherited method from the base class myDog.Eat(); // Using method specific to the derived class myDog.Bark(); } }
In this example, Dog
is the derived class, inheriting from the Animal
base class. The Dog
class has access to the Name
property and the Eat
method from the Animal
class. Additionally, it introduces a new method, Bark
, which is specific to the Dog
class.
As illustrated in the diagram, there can be cases where a class inherits from a class which is already a class from some other:
index.cs
123456789101112131415161718192021222324252627282930313233343536373839404142434445using System; // Base class public class Animal { public void Eat() { Console.WriteLine("Animal is eating."); } } // Intermediate class inheriting from Animal public class Mammal : Animal { public void GiveBirth() { Console.WriteLine("Mammal is giving birth."); } } // Derived class inheriting from Mammal public class Dog : Mammal { public void Bark() { Console.WriteLine("Dog is barking."); } } class Program { static void Main() { Dog myDog = new Dog(); // Methods from the base class myDog.Eat(); // Methods from the intermediate class myDog.GiveBirth(); // Methods from the derived class myDog.Bark(); } }
In such a case, the class at the top-most level is called the Super Class. In this case Animal
is the super class. Such a case where there are multiple levels of inheritance is called Multi-Level Inheritance.
In some languages it allows a class to inherit from multiple base classes, such an inheritance is called Multiple Inheritance. In C#, a class can have only one parent class so Multiple Inheritance is not possible in C#.
1. In C#, which keyword or symbol is used to declare a derived class?
2. In Multi-Level inheritance, what is the class at the top called?
3. Is Multilevel inheritance possible in C#?
Thanks for your feedback!
Ask AI
Ask AI
Ask anything or try one of the suggested questions to begin our chat
Awesome!
Completion rate improved to 2.04
Derived Classes
Swipe to show menu
When you say a class is derived from another class, it means that it has all the fields and methods of the parent class and in addition to it, the derived class can contain additional fields and methods as well.

A derived class (also called a child class) is a class which inherits the properties of some other class while on the contrary, a base class (also called a parent class) is a class which is inherited from.
The syntax for making an inherited class is the following:
index.cs
1234567891011// Base class (parent class) public class BaseClass { // Fields and methods of the base class } // Derived class (child class) public class DerivedClass : BaseClass { // Additional fields and methods specific to the derived class }
Here's an example with some concrete code:
index.cs
12345678910111213141516171819202122232425262728293031323334353637using System; // Base class (parent class) public class Animal { public string Name; public void Eat() { Console.WriteLine($"{Name} is eating."); } } // Derived class (child class) public class Dog : Animal { public void Bark() { Console.WriteLine($"{Name} is barking."); } } class ConsoleApp { static void Main() { // Creating an instance of the derived class Dog myDog = new Dog(); myDog.Name = "Buddy"; // Using inherited method from the base class myDog.Eat(); // Using method specific to the derived class myDog.Bark(); } }
In this example, Dog
is the derived class, inheriting from the Animal
base class. The Dog
class has access to the Name
property and the Eat
method from the Animal
class. Additionally, it introduces a new method, Bark
, which is specific to the Dog
class.
As illustrated in the diagram, there can be cases where a class inherits from a class which is already a class from some other:
index.cs
123456789101112131415161718192021222324252627282930313233343536373839404142434445using System; // Base class public class Animal { public void Eat() { Console.WriteLine("Animal is eating."); } } // Intermediate class inheriting from Animal public class Mammal : Animal { public void GiveBirth() { Console.WriteLine("Mammal is giving birth."); } } // Derived class inheriting from Mammal public class Dog : Mammal { public void Bark() { Console.WriteLine("Dog is barking."); } } class Program { static void Main() { Dog myDog = new Dog(); // Methods from the base class myDog.Eat(); // Methods from the intermediate class myDog.GiveBirth(); // Methods from the derived class myDog.Bark(); } }
In such a case, the class at the top-most level is called the Super Class. In this case Animal
is the super class. Such a case where there are multiple levels of inheritance is called Multi-Level Inheritance.
In some languages it allows a class to inherit from multiple base classes, such an inheritance is called Multiple Inheritance. In C#, a class can have only one parent class so Multiple Inheritance is not possible in C#.
1. In C#, which keyword or symbol is used to declare a derived class?
2. In Multi-Level inheritance, what is the class at the top called?
3. Is Multilevel inheritance possible in C#?
Thanks for your feedback!