Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumC#delegates Func ActionSingle-choice MCQ

What does this print, given how Delegate removal works with duplicates?

Action a = () => Console.Write("X"); Action combo = a + a + a; // X three times combo -= a; combo();