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