fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. int? a = null;
  8. Console.WriteLine(a.GetType().FullName);
  9. }
  10. }
Runtime error #stdin #stdout #stderr 0s 134976KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Unhandled Exception:
System.NullReferenceException: Object reference not set to an instance of an object
  at Test.Main () [0x0000a] in <3c9fd4cdd19a4f49b7bcf5f5f0b95e58>:0 
[ERROR] FATAL UNHANDLED EXCEPTION: System.NullReferenceException: Object reference not set to an instance of an object
  at Test.Main () [0x0000a] in <3c9fd4cdd19a4f49b7bcf5f5f0b95e58>:0