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

A multicast delegate has three subscribed handlers. The second one throws. What happens to the third handler when the event is raised with a normal Invoke?

Action a = H1; a += H2; // H2 throws a += H3; a(); // what about H3?