示例#1
0
        public List <Tuple <int, int> > GetHandValue(bool output = false)
        {
            List <Card> allCards = new List <Card>(pHand.GetCards());

            allCards.AddRange(communityCards.GetCards());

            PokerHand totalHand = new PokerHand();

            totalHand.SetCards(allCards);

            return(totalHand.GetValue(output));
        }