I would like to Check multiple checkBoxs and do functions based on what series of checkBoxes were Checked. What would be the best way to do this insted of a bunch of if/else statements?
Thanks
if/else Example:
if (checkBox1.Checked==true&&checkBox2.Checked==true)
{
}
Thanks
if/else Example:
if (checkBox1.Checked==true&&checkBox2.Checked==true)
{
}