public void addToMemorized() { CurrentFlashcard = NextList.First(); NextList.RemoveAt(0); Memorized++; NotMemorized--; }
public void addToNotMemorized() { CurrentFlashcard = NextList.First(); int temp = NextList[0]; NextList.RemoveAt(0); NextList.Add(temp); }
public int getNext() { if (NextList.Count > 0) { return(NextList.First()); } else { return(-1); } }