I guess all programmers share the same opinion about managers' work - an example from Pluralsight course on C# Generics by Scott Allen

I guess all programmers share the same opinion about managers' work - an example from Pluralsight course on C# Generics by Scott Allen

Content Model.cs X Program.cs Querylt.Employee using System.Text; using System. Threading. Tasks; namespace QueryIt public class Person public string Name get; set; DoWorkO public class Employee : Person public int Id get; set; public virtual void DoWork() Console.WriteLine("Doing real work"); E public class Manager : Employee public override void DoWork() Console.WriteLine("Create a meeting");

태그 없음
← 목록으로 돌아가기
seongyeol