Skip to main content
🔮 Output PredictionC# C# / .NET Easy⚡+10 XP

Nullable Type

What does int? mean in C#?

C# / .NET
int? score = null;
Console.WriteLine(score.HasValue);

🔮 What is the output?