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

In a multicast event, what happens when one of several subscribed handlers throws an exception during a raise?

public event EventHandler Changed; void Raise() { Changed?.Invoke(this, EventArgs.Empty); } // Three handlers subscribed in order: A, B (throws), C