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