h1.post-title { color:orange; font-family:verdana,Arial; font-weight:bold; padding-bottom:5px; text-shadow:#64665b 0px 1px 1px; font-size:32px; } -->

Pages

C# provides us with the IS operator

–returns true if an object isan instance of a type

AS operator attempts to cast an object to a specified type

–returning the instance cast to the type
–null if not possible
–does not raise an exception