(this Type type)
| 71 | } |
| 72 | |
| 73 | public static Type BaseType(this Type type) |
| 74 | { |
| 75 | #if !UNITY_WSA || UNITY_EDITOR |
| 76 | return type.BaseType; |
| 77 | #else |
| 78 | return type.GetTypeInfo().BaseType; |
| 79 | #endif |
| 80 | } |
| 81 | |
| 82 | public static bool IsGenericType(this Type type) |
| 83 | { |
no outgoing calls
no test coverage detected