MCPcopy Create free account
hub / github.com/Tencent/xLua / IsAbstract

Method IsAbstract

Assets/XLua/Src/TypeExtensions.cs:37–44  ·  view source on GitHub ↗
(this Type type)

Source from the content-addressed store, hash-verified

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 {

Callers 4

GetConstructorWrapMethod · 0.80
GetExtensionMethodsOfMethod · 0.80
MakePrivateAccessibleMethod · 0.80
genCheckerMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected