306.
What the below C# method will return public static int intGetVal() { try { int a = 1; int b = 0; int c; c = a / b; return c; } catch(Exception ex) { return -1; } finally { return -2; } }
View Description
Control cannot leave the body of a finally clause.
All of the statements in a finally clause must execute