Search notes:

System.Nullable<T> (struct)

Allows to declare variables of types that are otherwise not nullable (such as those that derive from System.ValueType?).
In C#, T? is a shorthand notation for System.Nullable<T>.
using System;
using System.Reflection;

//
// Prevent warning CS8632:
//   The annotation for nullable reference types should only
//   be used in code within a '#nullable' annotations context.
// 
#nullable enable

class Prg {

   public static void Main() { // Needs to be public for reflection!

      Int32   num   =    42;
      Int32?  num_  =  null;

      Console.WriteLine(
         String.Format("  num: {0}, num_: {1}<",
                          num     , num_       ));

      Type       prg = typeof(Prg);
      MethodInfo met = prg.GetMethod("Main");
      MethodBody bod = met.GetMethodBody();
      dynamic    vai = bod.LocalVariables;

      Console.WriteLine("  type of num:  {0}", vai[0].LocalType.FullName); // System.Int32
      Console.WriteLine("  type of num_: {0}", vai[1].LocalType.FullName); // System.Nullable`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]
   }
}
Github repository .NET-API, path: /System/Nullable-T/simple.cs

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/Microsof...', 1758210295, '216.73.216.150', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/Microsoft/dot-net/namespaces-classes/System/Nullable-T/index(68): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78