C Sharp (C#) - Exception Handling
What will be the output of this C# code?
try {
Console.WriteLine("Try block");
throw new Exception();
} catch {
Console.WriteLine("Catch block");
} finally {
Console.WriteLine("Finally block");
}