I know of is and as for instanceof, but what about the reflective isInstance() method?
is
as
instanceof
Below code can be alternative to IsAssignableFrom.
IsAssignableFrom
parentObject.GetType().IsInstanceOfType(inheritedObject)
See Type.IsInstanceOfType description in MSDN.