30 internal static bool IsEnum(
System.Type type)
35 internal static System.Reflection.Assembly GetAssembly(
System.Type type)
40 internal static System.Reflection.MethodBase GetDeclaringMethod(
System.Type type)
42 return type.DeclaringMethod;
45 internal static bool IsGenericType(
System.Type type)
47 return type.IsGenericType;
50 internal static bool IsGenericTypeDefinition(
System.Type type)
52 return type.IsGenericTypeDefinition;
55 internal static System.Type[] GetGenericArguments(
System.Type type)
57 return type.GetGenericArguments();