using System; int? count = null; object? boxed = count; Console.WriteLine(boxed is null); count = 7; boxed = count; Console.WriteLine(boxed.GetType().Name);