Example #1
0
 public void ShowAllCards()
 {
     if (CounterForShow == 0)
     {
         CounterForShow++;
         Console.WriteLine($"***** Welcome! You have *******");
         SubPrimaryDeck.ForEach(p => Console.WriteLine($"{p}"));
         Console.WriteLine($"***** The End *******");
     }
     else
     {
         Console.WriteLine($"***** You Still have *******");
         MainDeck.ForEach(f => Console.WriteLine($"{f}"));
         Console.WriteLine($"***** The End *******");
     }
 }