Beispiel #1
0
 public abstract void Add(TaskBase other);
 public void Add(TaskBase task)
 {
     group.Add(task);
 }
Beispiel #3
0
 public sealed override void Add(TaskBase other)
 {
     throw new NotImplementedException();
 }
Beispiel #4
0
 public override void Add(TaskBase task)
 {
     tasks.AddLast(task);
 }