(this Type type)
| 89 | } |
| 90 | |
| 91 | public static bool IsGenericTypeDefinition(this Type type) |
| 92 | { |
| 93 | #if !UNITY_WSA || UNITY_EDITOR |
| 94 | return type.IsGenericTypeDefinition; |
| 95 | #else |
| 96 | return type.GetTypeInfo().IsGenericTypeDefinition; |
| 97 | #endif |
| 98 | } |
| 99 | |
| 100 | #if UNITY_WSA && !UNITY_EDITOR |
| 101 | public static bool IsSubclassOf(this Type type, Type c) |
no outgoing calls
no test coverage detected