Exemplo n.º 1
0
 private void DeclareWinnerFromBust(Player player)
 {
     if (player.Name == "Dealer")
     {
         Console.WriteLine($"{player.Name} busts!\nwith the hand {player.GetCurrentHand()}");
         Console.WriteLine("You beat the dealer! Dealer busted.");
     }
     else
     {
         Console.WriteLine($"You are currently at a Bust!\nwith the hand {player.GetCurrentHand()}");
         Console.WriteLine($"Dealer wins! You busted.");
     }
 }