What does this program print when a nullable value is boxed?

from Data types
C# 14 / .NET 10 intermediate 2 min

What does this program print when a nullable value is boxed?

csharp
using System;

int? count = null;
object? boxed = count;
Console.WriteLine(boxed is null);

count = 7;
boxed = count;
Console.WriteLine(boxed.GetType().Name);
Open in playground
Report an error