Exemple #1
0
        private static void DealCard(Deck deck)
        {
            Console.WriteLine("How many cards to Deal?");
            string cardsToDeal = Console.ReadLine();

            deck.DealCards(Int16.Parse(cardsToDeal), true);
        }