public void addToNotMemorized() { CurrentFlashcard = NextList.First(); int temp = NextList[0]; NextList.RemoveAt(0); NextList.Add(temp); }
public bool AddNext(Node node) { if (this != node) { NextList.Add(node); return(true); } return(false); }
public void AddNext(Node node) { NextList.Add(node); }