static void Main(string[] args) { ChildClass CC = new ChildClass(); //FullTimeEmployee FTE = new FullTimeEmployee(); //FTE.FirstName = "Nagendra"; //FTE.LastName = "Prasad"; //FTE.YearlySalary = 200000F; //FTE.PrintFullName(); //PartTimeEmployee PTE = new PartTimeEmployee(); //PTE.FirstName = "Nagendra"; //PTE.LastName = "Prasad"; //PTE.HourlyRate = 100F; //PTE.PrintFullName(); Console.ReadKey(); }
public static void Main() { ChildClass cc = new ChildClass(); }
public static void Main() { ChildClass child = new ChildClass(); child.print(); }