In development blogs, online code examples and (recently) even a book, I keep stumbling about code like this:
var y = x as T;
y.SomeMethod();
or, even worse:
(x as T).SomeMethod();
That doesn’t make sense to me. If you are sure that x is of type T, you should use a direct cast: (T)x. If you are not sure, you can use as but need to check for null before performing some operation. All that the above code does is to turn a (useful) InvalidCastException into a (useless) NullReferenceException.
Am I the only one who thinks that this a blatant abuse of the as keyword? Or did I miss something obvious and the above pattern actually makes sense?
Your understanding is true. That sounds like trying to micro-optimize to me. You should use a normal cast when you are sure of the type. Besides generating a more sensible exception, it also fails fast. If you’re wrong about your assumption about the type, your program will fail immediately and you’ll be able to see the cause of failure immediately rather than waiting for a
NullReferenceExceptionorArgumentNullExceptionor even a logical error sometime in the future. In general, anasexpression that’s not followed by anullcheck somewhere is a code smell.On the other hand, if you are not sure about the cast and expect it to fail, you should use
asinstead of a normal cast wrapped with atry-catchblock. Moreover, use ofasis recommended over a type check followed by a cast. Instead of:which generates an
isinstinstruction for theiskeyword, and acastclassinstruction for the cast (effectively performing the cast twice), you should use:This only generates an
isinstinstruction. The former method has a potential flaw in multithreaded applications as a race condition might cause the variable to change its type after theischeck succeeded and fail at the cast line. The latter method is not prone to this error.The following solution is not recommended for use in production code. If you really hate such a fundamental construct in C#, you might consider switching to VB or some other language.
In case one desperately hates the cast syntax, he/she can write an extension method to mimic the cast:
and use a neat[?] syntax: