internal void showRankChanges(Racer r) { string holder = r.Name + "'s rank was changed to: " + r.Rank; lbBlueScout.Items.Add(holder); }
public Node(Racer i) { Value = i; Next = null; }
private Node next; // the next node it refers to; null if there does not exist a next node public Node(Racer r) { this.theRacer = r; this.next = null; }
private void addRacer(Racer r) { racers.Add(r); }