1.  
  2. int? c = null;
  3.  
  4. // d = c, if c is not null, d = -1 if c is null.
  5. int d = c ?? -1;
  6. Console.WriteLine($"d is {d}");
  7.