Why the finally block doesn't get executed
just wrote a little program but i'm confuse why the finally block doesn't
get executed i'm really looking to understand the details behind this.
Thank you for your help.
int a = 10;
int b = 0;
double result = 0;
try
{
result = a/b;
Console.WriteLine("result is :" + result);
Console.Read();
}
catch (Exception exception)
{
Console.WriteLine("ooop.......");
throw exception;
}
finally
{
Console.WriteLine("let stop this operation");
}