static void Main(string[] args) {
try {
Console.WriteLine("Level 1");
try {
Console.WriteLine("Level 2");
goto exit;
} finally {
Console.WriteLine("Level 2 Finished");
}
} finally {
Console.WriteLine("Level 1 Finished");
}
exit: ;
}
What is the output?
Reveal answer
Fill a bubble to check yourself