Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumC#expression treesSingle-choice MCQ

What does this expression tree compile to and what does it print?

Expression<Func<int, int>> e = x => x + 1; var f = e.Compile(); Console.Write(f(41)); Console.Write(e.Body.NodeType);