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:
 - public abstract class AbsClass  
- {  
-    public void display()  
-    {  
-    }  
- }  
 
 - public class Derived : AbsAnother  
- {  
- }  
 
 - Derived obj = new Derived();  
- bj.dislay();  
 
- Create a static method in an abstract class like below:
 - public abstract class AbsStatic  
- {  
-    public abstract void Display();  
-    public static void GetEmployee()  
-    {  
-    }  
- }