コード例 #1
0
 public abstract void Visit(FulltimeEmployee fulltime);
コード例 #2
0
 public override void Visit(FulltimeEmployee fulltime)
 {
     Console.WriteLine("The wage of fulltime is ...");
 }
コード例 #3
0
 public override void Visit(FulltimeEmployee fulltime)
 {
     Console.Write("The worktime of fulltime is ...");
     Console.Write("The overtime of fulltime is ...");
     Console.Write("The timeoff of fulltime is ...");
 }