3
Nullable <int>를 증가 시키면 예외가 발생하지 않는 이유는 무엇입니까?
Console.WriteLine이 왜 빈 줄을 작성하고 ( Console.WriteLine(null)컴파일 오류가 발생 a+=1합니까) NullReferenceException이없는 이유 (심지어 발생 해서는 안 됨 )를 설명해 주 시겠습니까? int? a = null; a++; // Why there is not NullReferenceException? Console.WriteLine(a); // Empty line