What's the point of "As" keyword in C#

patrick picture patrick · Jul 1, 2010 · Viewed 21.1k times · Source

From the docs:

The as operator is like a cast except that it yields null on conversion failure instead of raising an exception. More formally, an expression of the form:

   expression as type

is equivalent to:

  expression is type ? (type)expression : (type) null

except that expression is evaluated only once.

So why wouldn't you choose to either do it one way or the other. Why have two systems of casting?

Answer

Eric Lippert picture Eric Lippert · Jul 1, 2010

They aren't two system of casting. The two have similar actions but very different meanings. An "as" means "I think this object might actually be of this other type; give me null if it isn't." A cast means one of two things:

  • I know for sure that this object actually is of this other type. Make it so, and if I'm wrong, crash the program.

  • I know for sure that this object is not of this other type, but that there is a well-known way of converting the value of the current type to the desired type. (For example, casting int to short.) Make it so, and if the conversion doesn't actually work, crash the program.

See my article on the subject for more details.

https://ericlippert.com/2009/10/08/whats-the-difference-between-as-and-cast-operators/