36
1
//learn inheritance at https://www.tutorialsteacher.com/csharp/inheritance
2
using System;
3
4
public class Program
5
{
6
public static void Main()
7
{
8
Employee emp = new Employee();
9
emp.FirstName = "Steve";
10
emp.LastName = "Jobs";
11
emp.EmployeeId = 1;
12
emp.CompanyName = "Apple";
13
14
Console.WriteLine(emp.GetFullName()); //base class method
15
Console.WriteLine(emp.EmployeeId);
16
Console.WriteLine(emp.CompanyName);
17
18
}
19
}
20
21
class Person
22
{
23
public string FirstName { get; set; }
24
public string LastName { get; set; }
25
26
public string GetFullName(){
27
return FirstName + " " + LastName;
28
}
29
}
30
31
class Employee : Person
32
{
33
public int EmployeeId { get; set; }
34
public string CompanyName { get; set; }
35
36
}
Cached Result