Example #1
0
 /*!
  * Used to determine whether this object is a derived type of the given type constant.  For example, all NIF objects are derived types of NiObject, and a NiNode is also a derived type of NiObjectNET and NiAVObject.
  * \return True if this object is derived from the type represented by the given type constant.  False otherwise.
  */
 public bool IsDerivedType(Type_ compare_to) => GetType().IsDerivedType(compare_to);
Example #2
0
 /*!
  * Used to determine whether this object is exactly the same type as the given type constant.
  * \return True if this object is exactly the same type as that represented by the given type constant.  False otherwise.
  */
 public bool IsSameType(Type_ compare_to) => GetType().IsSameType(compare_to);