Example #1
0
 private void button12_Click(object sender, EventArgs e)
 {
     if (HandCombination.isHighCard(new Hand(myHand1)))
     {
         MessageBox.Show("This is High Card.");
     }
     else
     {
         MessageBox.Show("Not High Card.");
     }
 }