int i=0;
try{
int j = 10/i;
}
catch(IOException e){}
finally{
Console.WriteLine("In finally");
Console.ReadLine();
}
The finally block does not seem to execute when pressing F5 in VS2008. I am using this code in Console Application.
The Visual Studio debugger halts execution when you get an uncaught exception (in this case a divide by zero exception). In debug mode Visual Studio prefers to break execution and give you a popup box at the source of the error rather than letting the application crash. This is to help you find uncaught errors and fix them. This won't happen if you detach the debugger.
Try running it in release mode from the console without the debugger attached and you will see your message.
If you want it to execute while debugging there are two things you can do:
1) Catch the correct exception:
int i = 0;
try
{
int j = 10 / i;
}
catch(DivideByZeroException e){}
finally
{
Console.WriteLine("In finally");
Console.ReadLine();
}
2) Tell Visual Studio to ignore unhandled exceptions. Go to Debug-->Exceptions, and then you can uncheck the Common Language Runtime Exceptions "User-unhandled" option, or you can expand that node, and uncheck individual exception types.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With