C Sharp (C#) - Exception Handling
In this code, what will be printed?
static int Test() {
try {
throw new Exception("Error");
} finally {
return 10;
}
}
Console.WriteLine(Test());