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

What does this print, given how multicast delegate return values work?

Func<int> f = () => 1; f += () => 2; f += () => 3; Console.WriteLine(f());