标签: c# compiler-construction compiler-warnings
为什么在C#中抛出null而不是编译器警告?
我看到一些代码中有throw null;。这会导致抛出新的NullReferenceException。
throw null;
NullReferenceException
为什么编译器不会将此标记为警告?