Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyC#nullable typesSingle-choice MCQ

For `int? x = 5;`, what does `x.GetType()` return?

int? x = 5; Console.WriteLine(x.GetType());