(this Type type)
| 8 | internal static class TypeExtensions |
| 9 | { |
| 10 | public static bool IsValueType(this Type type) |
| 11 | { |
| 12 | #if !UNITY_WSA || UNITY_EDITOR |
| 13 | return type.IsValueType; |
| 14 | #else |
| 15 | return type.GetTypeInfo().IsValueType; |
| 16 | #endif |
| 17 | } |
| 18 | |
| 19 | public static bool IsEnum(this Type type) |
| 20 | { |
no outgoing calls
no test coverage detected