C Sharp (C#) - Exception Handling
Consider this code:
try {
Console.WriteLine("Start");
return;
} finally {
Console.WriteLine("Cleanup");
}What is the output when this method is called?