Exemplo n.º 1
0
 public void addToMemorized()
 {
     CurrentFlashcard = NextList.First();
     NextList.RemoveAt(0);
     Memorized++;
     NotMemorized--;
 }
Exemplo n.º 2
0
        public void addToNotMemorized()
        {
            CurrentFlashcard = NextList.First();
            int temp = NextList[0];

            NextList.RemoveAt(0);
            NextList.Add(temp);
        }
Exemplo n.º 3
0
 public int getNext()
 {
     if (NextList.Count > 0)
     {
         return(NextList.First());
     }
     else
     {
         return(-1);
     }
 }