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

What is the result type and value of combining two multicast delegates of type Func<int> with +, then invoking the combination?

Func<int> a = () => 1; Func<int> b = () => 2; Func<int> both = a + b; int x = both();