Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumC#events and observer patternSingle-choice MCQ

What does this code print when the event is raised?

Action e = () => Console.WriteLine("A"); e += () => throw new Exception("boom"); e += () => Console.WriteLine("C"); try { e(); } catch { }