Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumC#dynamic and ExpandoObjectSingle-choice MCQ

What is printed by this dynamic dispatch?

static string M(int x) => "int"; static string M(object x) => "object"; dynamic d = 5; Console.WriteLine(M(d));