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

What is the runtime type of `body` after this code, and what does it represent?

using System; using System.Linq.Expressions; class P { static void Main() { Expression<Func<int,int,int>> e = (a, b) => a + b; Expression body = e.Body; // what is body? } }