Q:

C# program to demonstrate the example of single inheritance

0

C# program to demonstrate the example of single inheritance

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program:

The source code to demonstrate the single inheritance in C# is given below. The given program is compiled and executed successfully on Microsoft Visual Studio.

//Program to demonstrate the single inheritance in C#.

using System;

class Man
{
    public string name;
    public int age;
    public Man(int age, string name)
    {
        this.name = name;
        this.age = age;
    }
}

class Employee: Man
{
    public int emp_id;
    public int emp_salary;

    public Employee(int id, int salary,string name,int age):base(age,name)
    {
        emp_id = id;
        emp_salary = salary;
    }
    public void Print()
    {
        Console.WriteLine("Emp ID:      " + emp_id      );
        Console.WriteLine("Emp Name:    " + name        );
        Console.WriteLine("Emp Salary:  " + emp_salary  );
        Console.WriteLine("Emp Age:     " + age         );
    }
    static void Main(string[] args)
    {
        Employee emp = new Employee(101, 1000, "Rahul", 31);
        emp.Print();
    }
}

Output:

Emp ID:      101
Emp Name:    Rahul
Emp Salary:  1000
Emp Age:     31
Press any key to continue . . .

Explanation:

In the above program, we created two classes Man, and Employee. Here we inherited Man class into Employee class.  Both classes contain constructors to initialize data members. Here we also created one more method Main() in the Employee class. Here we created the object of Employee class and print the Employee detail on the console screen.

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C# Basic Programs | Class, Object, Methods

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C# program to demonstrate the example of multi-lev... >>
<< C# program to demonstrate the example of unboxing...