Ejemplo n.º 1
0
        //choosecardfromhand method, will select a specific card from the hand then remove from list
        public Card ChooseCard(int cardNumber)
        {
            Card card;

            card = hand.GetCard(cardNumber, hand);
            hand.Remove(card);
            return(card);
        }