C Sharp (C#) - Exception Handling
Consider this code:
What is the output?
try {
Console.WriteLine("X");
} catch (Exception ex) {
Console.WriteLine("Y");
} finally {
Console.WriteLine("Z");
}What is the output?
