コード例 #1
0
 protected void AddLastTask(RandoTask toPush)
 {
     this.Logic.Tasks.AddToBack(toPush);
     this.BackCount++;
 }
コード例 #2
0
 protected void AddNextTask(RandoTask toPush)
 {
     this.Logic.Tasks.AddToFront(toPush);
     this.FrontCount++;
 }