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 { }