2
請參閱下面的代碼:裏面的try/catch(第二的try/catch裏面有個方法)
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
try
{
mymethod();
}
catch (Exception ex)//First catch
{
MessageBox.Show(ex.ToString());
}
}
private void mymethod()
{
int a = 10;
int b = 0;
try
{
int c = a/b;
}
catch (Exception ex)//Second catch
{
MessageBox.Show(ex.ToString());
//int c = a/b;
throw new Exception(ex.ToString());
}
}
}
我想迫使第一catch
第二catch
執行後執行!我如何強制上述運行並顯示第二個catch
錯誤? 我希望看到兩個catch
塊的ex.ToString()
。
在此先感謝。