I have a blank Windows Forms Application project with the Form.Load eventhandler bound:
private void Form1_Load(object sender, EventArgs e)
{
throw new Exception();
}
I have the proper(?) debugging settings: checked all user-unhandled exceptions to break. Yet still VS doesn't break on the line where the exception is thrown.
Is it handled by the Windows Forms API? And if yes, why is it so, doesn't it make debugging difficult?