コード例 #1
0
 public static CustomAttributeData[] FastGetCustomAttributeData(this Type type) =>
 TypesCache.Get(type).CustomAttributeData;
コード例 #2
0
 public static Attribute[] FastGetCustomAttributes(this Type type) =>
 TypesCache.Get(type).Attributes;
コード例 #3
0
 public static MethodInfo[] FastGetMethods(this Type type) =>
 TypesCache.Get(type).MethodInfos;
コード例 #4
0
 public static FieldInfo[] FastGetFields(this Type type) =>
 TypesCache.Get(type).FieldInfos;
コード例 #5
0
 public static PropertyInfo[] FastGetProperties(this Type type) =>
 TypesCache.Get(type).PropertyInfos;
コード例 #6
0
 public static ConstructorInfo[] FastGetConstructors(this Type type) =>
 TypesCache.Get(type).ConstructorInfos;