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

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