Exemple #1
0
 public void Swap()
 {
     _currentIndex = _currentIndex == 0 ? 1 : 0;
     CurrentList.Replace(PreviousList);
 }