© 2026 Hedgehog Software, LLC
if (maybe is int number) { Console.WriteLine($"The nullable int 'maybe' has the value {number}"); }
if(maybe != null) { Console.WriteLine($"The nullable int 'maybe' has the value {maybe}"); }