3
为什么不递增Nullable <int>会引发异常?
您能解释一下,为什么Console.WriteLine写空行(Console.WriteLine(null)给我编译错误),为什么没有NullReferenceException(甚至a+=1不应该引发它)? int? a = null; a++; // Why there is not NullReferenceException? Console.WriteLine(a); // Empty line