Example #1
0
 private void button9_Click(object sender, EventArgs e)
 {
     if (HandCombination.isThreeOfAKind(new Hand(myHand1)))
     {
         MessageBox.Show("This is 3Kind.");
     }
     else
     {
         MessageBox.Show("Not 3Kind.");
     }
 }