示例#1
0
 public bool SameValueCheck(Hand hand, int index, PokerCard topOfDeck)
 {
     if (hand.GetaCard(index).GetCardValue() == topOfDeck.GetCardValue())
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }