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

            NextList.RemoveAt(0);
            NextList.Add(temp);
        }