示例#1
0
 private void button5_Click(object sender, EventArgs e)
 {
     if (HandCombination.isFourOfAKind(new Hand(myHand1)))
     {
         MessageBox.Show("This is 4Kind.");
     }
     else
     {
         MessageBox.Show("Not 4Kind.");
     }
 }