(this Type type)
| 62 | } |
| 63 | |
| 64 | public static bool IsClass(this Type type) |
| 65 | { |
| 66 | #if !UNITY_WSA || UNITY_EDITOR |
| 67 | return type.IsClass; |
| 68 | #else |
| 69 | return type.GetTypeInfo().IsClass; |
| 70 | #endif |
| 71 | } |
| 72 | |
| 73 | public static Type BaseType(this Type type) |
| 74 | { |
no outgoing calls
no test coverage detected