Data Type C# Tutorial

using System;
class MainClass
{
   static void Main()
   {
      int? nullableInteger = 15;
     
      if (nullableInteger != null)
         Console.WriteLine("{0}", nullableInteger);
   }
}
15