If we cast some null variable to a type, I expect the compiler to throw some exception, but it doesn't. Why?
I mean
string sample1 = null as string;
string sample2 = (string)null;
object t1 = null;
TestClass t2 = (TestClass)t1;
maybe in the first one, the as
operator handles the exception handling. But the others examples must throw exception. How does the compiler handle these situations? Maybe since the variables are null, it does not perform a cast operation? Cause if it really casts a null pointer, it must be an error.
According to the documentation (Explicit conversions) you can cast from a base type to a derived type.
Since
null
is a valid value for all reference types, as long as the cast route exists you should be fine.object
null →TestClass
null works asobject
is a superclass to all reference types.However, if you try
string
null →TestClass
null (AssumingTestClass
is not a subtype ofstring
), you will find a compilation error asTestClass
is not a derived type ofstring
.