public string phonenumber;
public abstract void printdetails();
public override void printdetails()
string name = this.firstname + " " + this.lastname;
Console.WriteLine(" student name is : {0} " , name);
Console.WriteLine(" student age is : {0} " , this.age);
Console.WriteLine(" student phonenumber is :{0} " , this.phonenumber);
Console.WriteLine(" student rollno is :{0} " , this.rollno);
Console.WriteLine(" student fees is :{0} " , this.fees);
public string qualification;
public override void printdetails()
string name = this.firstname + " " + this.lastname;
Console.WriteLine(" teacher name is : {0} " , name);
Console.WriteLine(" teacher age is : {0} " , this.age);
Console.WriteLine(" teacher phonenumber is :{0} " , this.phonenumber);
Console.WriteLine(" teacher qualification is :{0} " , this.qualification);
Console.WriteLine(" teacher salary is :{0} " , this.salary);
public static void Main()
student obj = new student();
obj.firstname = "himani";
obj.phonenumber = "09876523456";
Console.WriteLine(" ....................");
teacher obj1= new teacher();
obj1.firstname = "sushil";
obj1.lastname = " kumar";
obj1.phonenumber = "08765498765";
obj1.qualification = " phd in computers";