M
mycwcgr_new
Unregistered / Unconfirmed
GUEST, unregistred user!
请问,如何完全中断一个过程?
我希望在执行another()时,不显示MessageBox.Show("No display");语句,请问如何写?
注意:在ReturnSystem()中,Return语句不能退出another() ,但是在Delphi中,可以用Abort语句完全退出
但是C#中不行。
private void button1_Click(object sender, System.EventArgs e)
{
another();
}
public void ReturnSystem()
{
return;
}
public void another()
{
ReturnSystem();
MessageBox.Show("No display");
}
ReturnSystem();仅仅是一个例子,这个过程是重用的,有许多其它程序语句
我希望在执行another()时,不显示MessageBox.Show("No display");语句,请问如何写?
注意:在ReturnSystem()中,Return语句不能退出another() ,但是在Delphi中,可以用Abort语句完全退出
但是C#中不行。
private void button1_Click(object sender, System.EventArgs e)
{
another();
}
public void ReturnSystem()
{
return;
}
public void another()
{
ReturnSystem();
MessageBox.Show("No display");
}
ReturnSystem();仅仅是一个例子,这个过程是重用的,有许多其它程序语句