Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyC#exceptions try catchSingle-choice MCQ

In which order do the catch and finally blocks behave here?

try { throw new InvalidOperationException(); } catch (ArgumentException) { Console.Write("A"); } finally { Console.Write("F"); }