Why is the output of this snippet System.Int32 instead of Nullable<Int32>?
int? x = 5;
Console.WriteLine(x.GetType());
Why is the output of this snippet System.Int32 instead of Nullable<Int32>?
int? x = 5;
Console.WriteLine(x.GetType());