public static CustomAttributeData[] FastGetCustomAttributeData(this Type type) =>
 TypesCache.Get(type).CustomAttributeData;
 public static Attribute[] FastGetCustomAttributes(this Type type) =>
 TypesCache.Get(type).Attributes;
 public static MethodInfo[] FastGetMethods(this Type type) =>
 TypesCache.Get(type).MethodInfos;
 public static FieldInfo[] FastGetFields(this Type type) =>
 TypesCache.Get(type).FieldInfos;
 public static PropertyInfo[] FastGetProperties(this Type type) =>
 TypesCache.Get(type).PropertyInfos;
 public static ConstructorInfo[] FastGetConstructors(this Type type) =>
 TypesCache.Get(type).ConstructorInfos;