Beispiel #1
0
        public void addToNotMemorized()
        {
            CurrentFlashcard = NextList.First();
            int temp = NextList[0];

            NextList.RemoveAt(0);
            NextList.Add(temp);
        }
 public bool AddNext(Node node)
 {
     if (this != node)
     {
         NextList.Add(node);
         return(true);
     }
     return(false);
 }
Beispiel #3
0
 public void AddNext(Node node)
 {
     NextList.Add(node);
 }