Beispiel #1
0
        /*
         * This method concatenates all the cards that a player has in hand and returns a string
         */
        public string ShowHand()
        {
            if (_hand != null && _hand.GetCardsInHand() > 0)
            {
                return($"{_playerName} : {_hand.ShowHand()}");
            }

            return("No cards dealt yet");
        }