(this Type type)
| 80 | } |
| 81 | |
| 82 | public static bool IsGenericType(this Type type) |
| 83 | { |
| 84 | #if !UNITY_WSA || UNITY_EDITOR |
| 85 | return type.IsGenericType; |
| 86 | #else |
| 87 | return type.GetTypeInfo().IsGenericType; |
| 88 | #endif |
| 89 | } |
| 90 | |
| 91 | public static bool IsGenericTypeDefinition(this Type type) |
| 92 | { |
no outgoing calls
no test coverage detected