(this Type type)
| 35 | } |
| 36 | |
| 37 | public static bool IsAbstract(this Type type) |
| 38 | { |
| 39 | #if !UNITY_WSA || UNITY_EDITOR |
| 40 | return type.IsAbstract; |
| 41 | #else |
| 42 | return type.GetTypeInfo().IsAbstract; |
| 43 | #endif |
| 44 | } |
| 45 | |
| 46 | public static bool IsSealed(this Type type) |
| 47 | { |
no outgoing calls
no test coverage detected