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

A subject exposes an event and raises it in a loop over its subscribers' results. One subscriber throws an exception inside its handler. What is the default behavior when the event is raised with the standard delegate invocation?

public event Action? Notify; // ... Notify?.Invoke();