我有两个不同的按钮点击调用相同功能的修改版本......
private void button1_Click(object sender, EventArgs e)
{ SendEmail(); }
private void button2_Click(object sender, EventArgs e)
{ SendRevisedEmail();}
public void SendEmail()
{
DataManip(ref item1, ref item2); //This is where I'd like the next 2 functions to not process if this one fails.
UpdateDB(ref item1, ref item2);
sendTechEmail(ref item1, ref item2);
}
public void SendRevisedEmail()
{
DataManip(ref item1, ref item2); //This is where I'd like the next 2 functions to not process if this one fails.
UpdateDB2(ref item1, ref item2);
sendRevisedTechEmail(ref item1, ref item2);
}
在DataManip
函数中,我让它对表单执行一些检查并设置为抛出一个弹出消息并返回;如果它没有出现flag1 = true
。
public void DataManip(ref string item1, ref string item2)
{
bool flag1 = false;
foreach (Control c in groupBox1.Controls)
{
Radiobutton rb = c as RadioButton;
if rb != null && rb.Checked)
{
flag1 = true;
break;
}
}
if (flag1 == true)
{
//Manipulate Data here
}
else if (flag1 != true)
{
MessageBox.Show("You didn't check any of these boxes!");
return;
};
}
截至目前,flag1 签入DataManip
工作正常。如果它缺少 groupBox1 中的条目,我可以验证它不会处理数据更改。
问题是在SendEmail()
andSendRevisedEmail()
函数中,它仍然处理对 之后的其他函数的调用DataManip(ref item1, ref item2)
。
如何导致错误退出DataManip
并阻止/跳过其他两个函数调用的执行?