There are different types to call Non-Abstract methods in the Abstract Class.
Following are some ways:
- Create an abstract class like below and add non-abstract method:Create a normal class like below:
- public abstract class AbsClass
- {
- public void display()
- {
- }
- }
Now Create an object for Derived class then we can able call the non abstract method of abstract class.- public class Derived : AbsAnother
- {
- }
- Derived obj = new Derived();
- bj.dislay();
- Create a static method in an abstract class like below:And call the method like below:
- public abstract class AbsStatic
- {
- public abstract void Display();
- public static void GetEmployee()
- {
- }
- }
- AbsStatic.GetEmployee();

Join the conversation! Your thoughts help the community grow.