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); }