(this Type type, Type c)
| 99 | |
| 100 | #if UNITY_WSA && !UNITY_EDITOR |
| 101 | public static bool IsSubclassOf(this Type type, Type c) |
| 102 | { |
| 103 | return type.GetTypeInfo().IsSubclassOf(c); |
| 104 | } |
| 105 | |
| 106 | public static bool IsDefined(this Type type, Type attributeType, bool inherit) |
| 107 | { |
no outgoing calls
no test coverage detected