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